Package | Description |
---|---|
io.picodata.driver.api.cursor |
Contains interfaces and implementations for cursors.
|
io.picodata.driver.api.space |
Contains interfaces for Tarantool space operations
|
io.picodata.driver.core.space |
Contains implementations for Tarantool space operations
|
Modifier and Type | Class and Description |
---|---|
class |
OffsetCursor<T extends Packable,R extends Collection<T>>
Cursor implementation that uses server 'limit' and 'offset'
methods under the hood.
|
class |
StartAfterCursor<T extends Packable,R extends Collection<T>>
Cursor implementation that uses 'cluster' select method
under the hood.
|
class |
TarantoolCursorBase<T extends Packable,R extends Collection<T>>
Generic cursor implementation that performs client calls
with TarantoolSpaceOperations.
|
Modifier and Type | Method and Description |
---|---|
TarantoolCursor<T> |
TarantoolSpaceOperations.cursor(Conditions conditions)
Same as
TarantoolSpaceOperations.cursor(Conditions, int)
but uses the default batch size. |
TarantoolCursor<T> |
TarantoolSpaceOperations.cursor(Conditions conditions,
int batchSize)
Cursor is an iterator-like object that is able to scroll through
results of a query.
|
Modifier and Type | Method and Description |
---|---|
TarantoolCursor<TarantoolTuple> |
TarantoolTupleSpace.cursor(Conditions conditions) |
TarantoolCursor<TarantoolTuple> |
ProxyTarantoolTupleSpace.cursor(Conditions conditions) |
TarantoolCursor<T> |
RetryingTarantoolSpace.cursor(Conditions conditions) |
TarantoolCursor<TarantoolTuple> |
TarantoolTupleSpace.cursor(Conditions conditions,
int batchSize) |
TarantoolCursor<TarantoolTuple> |
ProxyTarantoolTupleSpace.cursor(Conditions conditions,
int batchSize) |
TarantoolCursor<T> |
RetryingTarantoolSpace.cursor(Conditions conditions,
int batchSize) |
Copyright © 2025 Picodata. All rights reserved.