Hello,
thank you for the feedback. Have you already taken a look at our async 
java-driver <https://github.com/arangodb/arangodb-java-driver-async>? It 
requires Java 8 and works with `CompletableFuture` and the cursor api 
already support streams.

ArangoDBAsync arangoDB = new ArangoDBAsync.Builder().build();
Stream<BaseDocument> result = arangoDB.db().query("FOR doc IN test RETURN 
doc", new MapBuilder().get(), new AqlQueryOptions(), BaseDocument.class).get
().streamRemaining();


Am Freitag, 17. März 2017 19:34:35 UTC+1 schrieb JPatrick Davenport:
>
> Hello,
> I'm in the process of updating to the 4.x driver. While it's a lot of work 
> to move over to it, the ArangoDB team did a good job implementing Java 
> idioms. Can't wait until you upgrade to Java 1.8+ to get streams, etc.
>

-- 
You received this message because you are subscribed to the Google Groups 
"ArangoDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to