Package org.apache.ignite.index
Interface IndexRowStore<R>
-
public interface IndexRowStore<R>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.apache.ignite.internal.util.lang.GridCursor<R>
getAllRows()
R
getRow(R lookupRow)
org.apache.ignite.internal.util.lang.GridCursor<R>
getRows(R lower, R upper)
org.apache.ignite.internal.util.lang.GridCursor<R>
getRowsSparse(Function<R,R> lowerBoundSupplier)
R
put(R newRow)
R
remove(R row)
-
-
-
Method Detail
-
getRows
org.apache.ignite.internal.util.lang.GridCursor<R> getRows(R lower, R upper) throws IgniteCheckedException
- Throws:
IgniteCheckedException
-
getAllRows
org.apache.ignite.internal.util.lang.GridCursor<R> getAllRows() throws IgniteCheckedException
- Throws:
IgniteCheckedException
-
getRowsSparse
org.apache.ignite.internal.util.lang.GridCursor<R> getRowsSparse(Function<R,R> lowerBoundSupplier) throws IgniteCheckedException
- Throws:
IgniteCheckedException
-
getRow
R getRow(R lookupRow) throws IgniteCheckedException
- Throws:
IgniteCheckedException
-
put
R put(R newRow) throws IgniteCheckedException
- Throws:
IgniteCheckedException
-
remove
R remove(R row) throws IgniteCheckedException
- Throws:
IgniteCheckedException
-
-