Uses of Interface
io.tarantool.driver.api.SingleValueCallResult
-
Packages that use SingleValueCallResult 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.core.metadata Contains implementations for Tarantool space metadata operationsio.tarantool.driver.core.proxy Contains interfaces and classes essential for proxy clientio.tarantool.driver.core.space Contains implementations for Tarantool space operationsio.tarantool.driver.mappers Contains converters and mappers that map Java object and MessagePackio.tarantool.driver.mappers.converters.value.custom Contains converters that map MessagePack to connector's special Java objects -
-
Uses of SingleValueCallResult in io.tarantool.driver.api
Method parameters in io.tarantool.driver.api with type arguments of type SingleValueCallResult Modifier and Type Method Description <T> CompletableFuture<TarantoolResult<T>>
TarantoolCallOperations. call(String functionName, CallResultMapper<TarantoolResult<T>,SingleValueCallResult<TarantoolResult<T>>> resultMapper)
Execute a function defined on Tarantool instance.<T> CompletableFuture<TarantoolResult<T>>
TarantoolCallOperations. call(String functionName, List<?> arguments, CallResultMapper<TarantoolResult<T>,SingleValueCallResult<TarantoolResult<T>>> resultMapper)
Execute a function defined on Tarantool instance.<T> CompletableFuture<TarantoolResult<T>>
TarantoolCallOperations. call(String functionName, List<?> arguments, MessagePackObjectMapper argumentsMapper, CallResultMapper<TarantoolResult<T>,SingleValueCallResult<TarantoolResult<T>>> resultMapper)
Execute a function defined on Tarantool instance.<T> CompletableFuture<T>
TarantoolCallOperations. callForSingleResult(String functionName, CallResultMapper<T,SingleValueCallResult<T>> resultMapper)
Execute a function defined on Tarantool instance.<T> CompletableFuture<T>
TarantoolCallOperations. callForSingleResult(String functionName, List<?> arguments, CallResultMapper<T,SingleValueCallResult<T>> resultMapper)
Execute a function defined on Tarantool instance.<T> CompletableFuture<T>
TarantoolCallOperations. callForSingleResult(String functionName, List<?> arguments, MessagePackObjectMapper argumentsMapper, CallResultMapper<T,SingleValueCallResult<T>> resultMapper)
Execute a function defined on Tarantool instance. -
Uses of SingleValueCallResult in io.tarantool.driver.api.metadata
Subinterfaces of SingleValueCallResult 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 SingleValueCallResult in io.tarantool.driver.api.tuple
Subinterfaces of SingleValueCallResult in io.tarantool.driver.api.tuple Modifier and Type Interface Description interface
TarantoolTupleSingleResult
Shortcut forSingleValueCallResult
with default tuple result -
Uses of SingleValueCallResult in io.tarantool.driver.core
Classes in io.tarantool.driver.core that implement SingleValueCallResult Modifier and Type Class Description class
SingleValueCallResultImpl<T>
BasicSingleValueCallResult
implementation. -
Uses of SingleValueCallResult in io.tarantool.driver.core.metadata
Constructor parameters in io.tarantool.driver.core.metadata with type arguments of type SingleValueCallResult Constructor Description ProxyMetadataProvider(TarantoolCallOperations client, String metadataFunctionName, ValueConverter<org.msgpack.value.Value,TarantoolMetadataContainer> metadataConverter, Class<? extends SingleValueCallResult<TarantoolMetadataContainer>> resultClass)
Basic constructor -
Uses of SingleValueCallResult in io.tarantool.driver.core.proxy
Fields in io.tarantool.driver.core.proxy with type parameters of type SingleValueCallResult Modifier and Type Field Description protected CallResultMapper<T,SingleValueCallResult<T>>
AbstractProxyOperation. resultMapper
protected CallResultMapper<T,SingleValueCallResult<T>>
AbstractProxyOperation. resultMapper
protected CallResultMapper<T,SingleValueCallResult<T>>
AbstractProxyOperation. resultMapper
protected CallResultMapper<T,SingleValueCallResult<T>>
AbstractProxyOperation. resultMapper
protected CallResultMapper<T,SingleValueCallResult<T>>
AbstractProxyOperation. resultMapper
protected CallResultMapper<T,SingleValueCallResult<T>>
AbstractProxyOperation. resultMapper
Method parameters in io.tarantool.driver.core.proxy with type arguments of type SingleValueCallResult Modifier and Type Method Description DeleteProxyOperation.Builder<T>
DeleteProxyOperation.Builder. withResultMapper(CallResultMapper<T,SingleValueCallResult<T>> resultMapper)
InsertProxyOperation.Builder<T,R>
InsertProxyOperation.Builder. withResultMapper(CallResultMapper<R,SingleValueCallResult<R>> resultMapper)
ReplaceProxyOperation.Builder<T,R>
ReplaceProxyOperation.Builder. withResultMapper(CallResultMapper<R,SingleValueCallResult<R>> resultMapper)
SelectProxyOperation.Builder<T>
SelectProxyOperation.Builder. withResultMapper(CallResultMapper<T,SingleValueCallResult<T>> resultMapper)
UpdateProxyOperation.Builder<T>
UpdateProxyOperation.Builder. withResultMapper(CallResultMapper<T,SingleValueCallResult<T>> resultMapper)
UpsertProxyOperation.Builder<T,R>
UpsertProxyOperation.Builder. withResultMapper(CallResultMapper<R,SingleValueCallResult<R>> resultMapper)
-
Uses of SingleValueCallResult in io.tarantool.driver.core.space
Methods in io.tarantool.driver.core.space that return types with arguments of type SingleValueCallResult Modifier and Type Method Description protected abstract CallResultMapper<R,SingleValueCallResult<R>>
ProxyTarantoolSpace. tupleResultMapper()
MessagePack value mapper configured with an ArrayValue to tuple converter corresponding to the selected tuple typeprotected CallResultMapper<TarantoolResult<TarantoolTuple>,SingleValueCallResult<TarantoolResult<TarantoolTuple>>>
ProxyTarantoolTupleSpace. tupleResultMapper()
-
Uses of SingleValueCallResult in io.tarantool.driver.mappers
Methods in io.tarantool.driver.mappers that return types with arguments of type SingleValueCallResult Modifier and Type Method Description <T> CallResultMapper<T,SingleValueCallResult<T>>
DefaultResultMapperFactoryFactory. getDefaultSingleValueMapper(MessagePackMapper mapper, Class<T> tupleClass)
<T> CallResultMapper<T,SingleValueCallResult<T>>
DefaultResultMapperFactoryFactory. getSingleValueResultMapper(ValueConverter<org.msgpack.value.Value,T> valueConverter)
<T> CallResultMapper<TarantoolResult<T>,SingleValueCallResult<TarantoolResult<T>>>
DefaultResultMapperFactoryFactory. getTarantoolResultMapper(MessagePackMapper mapper, Class<T> tupleClass)
CallResultMapper<TarantoolResult<TarantoolTuple>,SingleValueCallResult<TarantoolResult<TarantoolTuple>>>
TarantoolTupleSingleResultMapperFactory. withDefaultTupleValueConverter(MessagePackMapper messagePackMapper, TarantoolSpaceMetadata spaceMetadata)
Get defaultTarantoolTuple
converterCallResultMapper<T,SingleValueCallResult<T>>
SingleValueResultMapperFactory. withSingleValueResultConverter(ValueConverter<org.msgpack.value.Value,T> valueConverter)
Get result mapper for the Lua function call with single resultCallResultMapper<T,SingleValueCallResult<T>>
SingleValueResultMapperFactory. withSingleValueResultConverter(ValueConverter<org.msgpack.value.Value,T> valueConverter, Class<? extends SingleValueCallResult<T>> resultClass)
Get result mapper for the Lua function call with single resultCallResultMapper<T,SingleValueCallResult<T>>
SingleValueResultMapperFactory. withSingleValueResultConverter(MessagePackValueMapper valueMapper, ValueConverter<org.msgpack.value.Value,T> valueConverter)
Get result mapper for the Lua function call with single resultCallResultMapper<T,SingleValueCallResult<T>>
SingleValueResultMapperFactory. withSingleValueResultConverter(MessagePackValueMapper valueMapper, ValueConverter<org.msgpack.value.Value,T> valueConverter, Class<? extends SingleValueCallResult<T>> resultClass)
Get result mapper for the Lua function call with single resultCallResultMapper<TarantoolResult<T>,SingleValueCallResult<TarantoolResult<T>>>
SingleValueTarantoolResultMapperFactory. withTarantoolResultConverter(ValueConverter<org.msgpack.value.ArrayValue,T> valueConverter)
GetTarantoolResult
mapper for the Lua function call with single resultCallResultMapper<TarantoolResult<T>,SingleValueCallResult<TarantoolResult<T>>>
SingleValueTarantoolResultMapperFactory. withTarantoolResultConverter(ValueConverter<org.msgpack.value.ArrayValue,T> valueConverter, Class<? extends SingleValueCallResult<TarantoolResult<T>>> resultClass)
GetTarantoolResult
mapper for the Lua function call with single resultMethod parameters in io.tarantool.driver.mappers with type arguments of type SingleValueCallResult Modifier and Type Method Description CallResultMapper<T,SingleValueCallResult<T>>
SingleValueResultMapperFactory. withSingleValueResultConverter(ValueConverter<org.msgpack.value.Value,T> valueConverter, Class<? extends SingleValueCallResult<T>> resultClass)
Get result mapper for the Lua function call with single resultCallResultMapper<T,SingleValueCallResult<T>>
SingleValueResultMapperFactory. withSingleValueResultConverter(MessagePackValueMapper valueMapper, ValueConverter<org.msgpack.value.Value,T> valueConverter, Class<? extends SingleValueCallResult<T>> resultClass)
Get result mapper for the Lua function call with single resultCallResultMapper<TarantoolResult<T>,SingleValueCallResult<TarantoolResult<T>>>
SingleValueTarantoolResultMapperFactory. withTarantoolResultConverter(ValueConverter<org.msgpack.value.ArrayValue,T> valueConverter, Class<? extends SingleValueCallResult<TarantoolResult<T>>> resultClass)
GetTarantoolResult
mapper for the Lua function call with single result -
Uses of SingleValueCallResult in io.tarantool.driver.mappers.converters.value.custom
Methods in io.tarantool.driver.mappers.converters.value.custom that return SingleValueCallResult Modifier and Type Method Description SingleValueCallResult<T>
SingleValueCallResultConverter. fromValue(org.msgpack.value.ArrayValue value)
-