Class ReduceIndex.FetchingCursor
- java.lang.Object
-
- org.apache.ignite.internal.processors.query.h2.twostep.ReduceIndex.FetchingCursor
-
- All Implemented Interfaces:
org.h2.index.Cursor
- Enclosing class:
- ReduceIndex
protected class ReduceIndex.FetchingCursor extends Object implements org.h2.index.Cursor
Fetching cursor.
-
-
Constructor Summary
Constructors Constructor Description FetchingCursor(org.h2.result.SearchRow first, org.h2.result.SearchRow last, Iterator<org.h2.result.Row> stream)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.h2.result.Rowget()org.h2.result.SearchRowgetSearchRow()booleannext()booleanprevious()
-
-
-
Constructor Detail
-
FetchingCursor
public FetchingCursor(org.h2.result.SearchRow first, org.h2.result.SearchRow last, Iterator<org.h2.result.Row> stream)- Parameters:
first- Lower bound.last- Upper bound.stream- Stream of all the rows from remote nodes.
-
-
Method Detail
-
next
public boolean next()
- Specified by:
nextin interfaceorg.h2.index.Cursor
-
get
public org.h2.result.Row get()
- Specified by:
getin interfaceorg.h2.index.Cursor
-
getSearchRow
public org.h2.result.SearchRow getSearchRow()
- Specified by:
getSearchRowin interfaceorg.h2.index.Cursor
-
previous
public boolean previous()
- Specified by:
previousin interfaceorg.h2.index.Cursor
-
-