Uses of Interface
io.tarantool.driver.api.cursor.TarantoolCursor
-
Packages that use TarantoolCursor Package Description io.tarantool.driver.api.cursor Contains interfaces and implementations for cursors.io.tarantool.driver.api.space Contains interfaces for Tarantool space operationsio.tarantool.driver.core.space Contains implementations for Tarantool space operations -
-
Uses of TarantoolCursor in io.tarantool.driver.api.cursor
Classes in io.tarantool.driver.api.cursor that implement TarantoolCursor Modifier and Type Class Description classOffsetCursor<T extends Packable,R extends Collection<T>>Cursor implementation that uses server 'limit' and 'offset' methods under the hood.classStartAfterCursor<T extends Packable,R extends Collection<T>>Cursor implementation that uses 'cluster' select method under the hood.classTarantoolCursorBase<T extends Packable,R extends Collection<T>>Generic cursor implementation that performs client calls with TarantoolSpaceOperations. -
Uses of TarantoolCursor in io.tarantool.driver.api.space
Methods in io.tarantool.driver.api.space that return TarantoolCursor Modifier and Type Method Description TarantoolCursor<T>TarantoolSpaceOperations. cursor(Conditions conditions)Same asTarantoolSpaceOperations.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. -
Uses of TarantoolCursor in io.tarantool.driver.core.space
Methods in io.tarantool.driver.core.space that return TarantoolCursor Modifier and Type Method Description TarantoolCursor<TarantoolTuple>ProxyTarantoolTupleSpace. cursor(Conditions conditions)TarantoolCursor<TarantoolTuple>ProxyTarantoolTupleSpace. cursor(Conditions conditions, int batchSize)TarantoolCursor<T>RetryingTarantoolSpace. cursor(Conditions conditions)TarantoolCursor<T>RetryingTarantoolSpace. cursor(Conditions conditions, int batchSize)TarantoolCursor<TarantoolTuple>TarantoolTupleSpace. cursor(Conditions conditions)TarantoolCursor<TarantoolTuple>TarantoolTupleSpace. cursor(Conditions conditions, int batchSize)
-