beyonddemise / vertx-couchdb-client

Java library for vert.x to access Apache CouchDB, inspired by NodeJS' nano
Other
0 stars 0 forks source link

Implement 1.3.6. /db/_find #35

Open Stwissel opened 3 days ago

Stwissel commented 3 days ago

Part of #29 Details: https://docs.couchdb.org/en/stable/api/database/find.html#

find needs special treatment since it uses transfer encoding chunked

Propose to use the Reactive pattern and use an Observer

Call would return something like CouchdbFindResult with meta information and the documents call the observer's on next. When onComplete gets called the Promise of CouchdbFindResult complets

Stwissel commented 3 days ago

Need to verify that chunked is used