You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by da...@apache.org on 2016/12/07 21:37:51 UTC

[6/9] tinkerpop git commit: TINKERPOP-1490 Updated dev docs on RemoteConnection API

TINKERPOP-1490 Updated dev docs on RemoteConnection API


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/69e0f66d
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/69e0f66d
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/69e0f66d

Branch: refs/heads/TINKERPOP-1490
Commit: 69e0f66d53a55eca85adb8c94d244335e7324129
Parents: 08cfa80
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Mon Nov 14 10:08:17 2016 -0500
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Tue Nov 15 09:52:58 2016 -0500

----------------------------------------------------------------------
 docs/src/dev/provider/index.asciidoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/69e0f66d/docs/src/dev/provider/index.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/dev/provider/index.asciidoc b/docs/src/dev/provider/index.asciidoc
index 8760d01..71d071f 100644
--- a/docs/src/dev/provider/index.asciidoc
+++ b/docs/src/dev/provider/index.asciidoc
@@ -427,7 +427,7 @@ iterate.
 There is one method to implement on `RemoteConnection`:
 
 [source,java]
-public <E> RemoteTraversal<?,E> submit(final Bytecode bytecode) throws RemoteConnectionException;
+public <E> CompletableFuture<RemoteTraversal<?, E>> submitAsync(final Bytecode bytecode) throws RemoteConnectionException;
 
 Note that it returns a `RemoteTraversal`. This interface should also be implemented and in most cases implementers can
 simply extend the `AbstractRemoteTraversal`, which provides default implementations for all the `Traversal` methods