From f6355c2e04dd073b0c60ebdfe05dfef0f594cb9d Mon Sep 17 00:00:00 2001 From: Simran Date: Fri, 11 Oct 2019 15:33:55 +0200 Subject: [PATCH 1/2] Docs: Update javadoc link, add note about merged async driver --- docs/Drivers/Java/README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/Drivers/Java/README.md b/docs/Drivers/Java/README.md index a2dd6ca17..3b6ed8630 100644 --- a/docs/Drivers/Java/README.md +++ b/docs/Drivers/Java/README.md @@ -2,6 +2,11 @@ The official ArangoDB Java Driver. +It can be used synchronously as well as asynchronously. The formerly separate async +driver with the same API as the synchronous driver, except that it returned a +`CompletableFuture` instead of the result `T` directly, was merged into this +driver in version 6.2.0. + - [Getting Started](GettingStarted/README.md) - [Reference](Reference/README.md) @@ -10,5 +15,5 @@ The official ArangoDB Java Driver. - [ChangeLog](https://raw.githubusercontent.com/arangodb/arangodb-java-driver/master/ChangeLog.md) - [Examples](https://github.com/arangodb/arangodb-java-driver/tree/master/src/test/java/com/arangodb/example) - [Tutorial](https://www.arangodb.com/tutorials/tutorial-sync-java-driver/) -- [JavaDoc](http://arangodb.github.io/arangodb-java-driver/javadoc-4_3/index.html) +- [JavaDoc](http://arangodb.github.io/arangodb-java-driver/javadoc-6_3/index.html) - [JavaDoc VelocyPack](http://arangodb.github.io/java-velocypack/javadoc-1_0/index.html) From a3bdbb850ee2fa3b87db16d3aeb3d2bf482926ac Mon Sep 17 00:00:00 2001 From: Simran Date: Fri, 11 Oct 2019 15:36:24 +0200 Subject: [PATCH 2/2] Async example link --- docs/Drivers/Java/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/Drivers/Java/README.md b/docs/Drivers/Java/README.md index 3b6ed8630..ce8561e0a 100644 --- a/docs/Drivers/Java/README.md +++ b/docs/Drivers/Java/README.md @@ -5,7 +5,8 @@ The official ArangoDB Java Driver. It can be used synchronously as well as asynchronously. The formerly separate async driver with the same API as the synchronous driver, except that it returned a `CompletableFuture` instead of the result `T` directly, was merged into this -driver in version 6.2.0. +driver in version 6.2.0. See +[async examples](https://github.com/arangodb/arangodb-java-driver/tree/master/src/test/java/com/arangodb/async/example){:target="_blank"}. - [Getting Started](GettingStarted/README.md) - [Reference](Reference/README.md)