You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by ok...@apache.org on 2015/03/04 15:41:46 UTC

[4/8] incubator-tinkerpop git commit: Update javadoc a bit.

Update javadoc a bit.


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

Branch: refs/heads/spark
Commit: d2884ba7b1b00790ce4fcb67e6ae76e2e5a9a3de
Parents: 14c54a5
Author: Stephen Mallette <sp...@apache.org>
Authored: Wed Mar 4 09:26:00 2015 -0500
Committer: Stephen Mallette <sp...@apache.org>
Committed: Wed Mar 4 09:26:00 2015 -0500

----------------------------------------------------------------------
 .../tinkerpop/gremlin/server/op/AbstractEvalOpProcessor.java     | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/d2884ba7/gremlin-server/src/main/java/org/apache/tinkerpop/gremlin/server/op/AbstractEvalOpProcessor.java
----------------------------------------------------------------------
diff --git a/gremlin-server/src/main/java/org/apache/tinkerpop/gremlin/server/op/AbstractEvalOpProcessor.java b/gremlin-server/src/main/java/org/apache/tinkerpop/gremlin/server/op/AbstractEvalOpProcessor.java
index a353e6d..8c335f3 100644
--- a/gremlin-server/src/main/java/org/apache/tinkerpop/gremlin/server/op/AbstractEvalOpProcessor.java
+++ b/gremlin-server/src/main/java/org/apache/tinkerpop/gremlin/server/op/AbstractEvalOpProcessor.java
@@ -117,7 +117,9 @@ public abstract class AbstractEvalOpProcessor implements OpProcessor {
     /**
      * A generalized implementation of the "eval" operation.  It handles script evaluation and iteration of results
      * so as to write {@link ResponseMessage} objects down the Netty pipeline.  It also handles script timeouts,
-     * iteration timeouts, metrics and building bindings.
+     * iteration timeouts, metrics and building bindings.  Note that result iteration is delegated to the
+     * {@link #handleIterator} method, so those extending this class could override that method for better control
+     * over result iteration.
      *
      * @param context The current Gremlin Server {@link Context}
      * @param gremlinExecutorSupplier A function that returns the {@link GremlinExecutor} to use in executing the