You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by yo...@apache.org on 2010/12/14 19:20:22 UTC

svn commit: r1049203 - /lucene/dev/branches/bulkpostings/lucene/src/java/org/apache/lucene/index/BulkPostingsEnum.java

Author: yonik
Date: Tue Dec 14 18:20:21 2010
New Revision: 1049203

URL: http://svn.apache.org/viewvc?rev=1049203&view=rev
Log:
doc: JumpResult is shared across calls

Modified:
    lucene/dev/branches/bulkpostings/lucene/src/java/org/apache/lucene/index/BulkPostingsEnum.java

Modified: lucene/dev/branches/bulkpostings/lucene/src/java/org/apache/lucene/index/BulkPostingsEnum.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/bulkpostings/lucene/src/java/org/apache/lucene/index/BulkPostingsEnum.java?rev=1049203&r1=1049202&r2=1049203&view=diff
==============================================================================
--- lucene/dev/branches/bulkpostings/lucene/src/java/org/apache/lucene/index/BulkPostingsEnum.java (original)
+++ lucene/dev/branches/bulkpostings/lucene/src/java/org/apache/lucene/index/BulkPostingsEnum.java Tue Dec 14 18:20:21 2010
@@ -113,6 +113,7 @@ public abstract class BulkPostingsEnum {
    *  seek did occur, you must call .offset() and .limit()
    *  on each BlockReader.  If null is returned then
    *  skipping is not possible, ie you should just scan
-   *  yourself). */
+   *  yourself). The returned JumpResult will only be valid until
+   *  the next call to jump. */
   abstract public JumpResult jump(int target, int curCount) throws IOException;
 }