Class UnicastCursor
- java.lang.Object
-
- org.apache.ignite.internal.processors.query.h2.opt.join.UnicastCursor
-
- All Implemented Interfaces:
org.h2.index.Cursor
public class UnicastCursor extends Object implements org.h2.index.Cursor
Simple cursor from a single node.
-
-
Constructor Summary
Constructors Constructor Description UnicastCursor(int rangeId, RangeStream 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
-
UnicastCursor
public UnicastCursor(int rangeId, RangeStream stream)- Parameters:
rangeId- Range ID.stream- Stream.
-
-
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
-
-