Added clarification for cursors in the CursorSeek part of the documentation.
Project: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/commit/944253a3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/tree/944253a3 Diff: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/diff/944253a3 Branch: refs/heads/USERGRID-614 Commit: 944253a3f9f8fbc90088b2d4b2f291daaf09a8e2 Parents: fc4b48a Author: GERey <[email protected]> Authored: Mon May 4 15:27:55 2015 -0700 Committer: GERey <[email protected]> Committed: Mon May 4 15:27:55 2015 -0700 ---------------------------------------------------------------------- .../java/org/apache/usergrid/corepersistence/pipeline/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/944253a3/stack/core/src/main/java/org/apache/usergrid/corepersistence/pipeline/README.md ---------------------------------------------------------------------- diff --git a/stack/core/src/main/java/org/apache/usergrid/corepersistence/pipeline/README.md b/stack/core/src/main/java/org/apache/usergrid/corepersistence/pipeline/README.md index ff123b0..5b98c31 100644 --- a/stack/core/src/main/java/org/apache/usergrid/corepersistence/pipeline/README.md +++ b/stack/core/src/main/java/org/apache/usergrid/corepersistence/pipeline/README.md @@ -74,7 +74,7 @@ Consider the following example flow: * Is used in all the submodules as a way to deal with cursors. 1. CursorSeek * Protected internal class that lives in AbstractPathFilter - * Whats the deal with only seeking values on the first call? Is this not similar to pagination? + * When resuming we use the RequestCursor to page for values. After use the cursor is no longer valid, and we only need to seek on the values that were returned from the cursor call. Any calls on the RequestCursor will be empty afterwards. 1. Collector * Extends generic PipelineOperation * Primary used to interact with the collect module
