Uses of Interface
io.tarantool.driver.api.CallResult
-
Packages that use CallResult Package Description io.tarantool.driver.api Contains interfaces and classes essential for end-user driver APIio.tarantool.driver.api.metadata Contains interfaces for Tarantool space metadata operationsio.tarantool.driver.api.tuple Contains tuple representation classes and helpersio.tarantool.driver.core Driver core classesio.tarantool.driver.mappers Contains converters and mappers that map Java object and MessagePack -
-
Uses of CallResult in io.tarantool.driver.api
Subinterfaces of CallResult in io.tarantool.driver.api Modifier and Type Interface Description interface
MultiValueCallResult<T,R extends List<T>>
CallResult
implementation with multi result value (all items item of the multi-return result is treated as value)interface
SingleValueCallResult<T>
CallResult
with one result value (first item of the multi-return result is treated as value)interface
TarantoolVoidResult
Shortcut forSingleValueCallResult
with void result -
Uses of CallResult in io.tarantool.driver.api.metadata
Subinterfaces of CallResult in io.tarantool.driver.api.metadata Modifier and Type Interface Description interface
DDLMetadataContainerResult
Shortcut forSingleValueCallResult
with Tarantool metadatainterface
TarantoolIndexMetadataResult
Shortcut forSingleValueCallResult
, that contains index metadata mappinginterface
TarantoolSpaceMetadataResult
Shortcut forSingleValueCallResult
, that contains space metadata mapping. -
Uses of CallResult in io.tarantool.driver.api.tuple
Subinterfaces of CallResult in io.tarantool.driver.api.tuple Modifier and Type Interface Description interface
TarantoolTupleMultiResult
Shortcut forMultiValueCallResult
with default tuple resultinterface
TarantoolTupleSingleResult
Shortcut forSingleValueCallResult
with default tuple result -
Uses of CallResult in io.tarantool.driver.core
Classes in io.tarantool.driver.core that implement CallResult Modifier and Type Class Description class
MultiValueCallResultImpl<T,R extends List<T>>
BasicMultiValueCallResult
implementation.class
SingleValueCallResultImpl<T>
BasicSingleValueCallResult
implementation.class
TarantoolVoidResultImpl
Implementation of Tarantool void result -
Uses of CallResult in io.tarantool.driver.mappers
Classes in io.tarantool.driver.mappers with type parameters of type CallResult Modifier and Type Class Description class
CallResultMapper<T,R extends CallResult<T>>
Special tuple mapper for API function call results.class
TarantoolCallResultMapperFactory<T,R extends CallResult<T>>
Factory forCallResultMapper
instances used for calling API functions on Tarantool instance
-