Package io.tarantool.driver.core.proxy
Class SelectProxyOperation.Builder<T>
- java.lang.Object
-
- io.tarantool.driver.core.proxy.SelectProxyOperation.Builder<T>
-
- Enclosing class:
- SelectProxyOperation<T>
public static final class SelectProxyOperation.Builder<T> extends Object
The builder for this class.
-
-
Constructor Summary
Constructors Constructor Description Builder(TarantoolMetadataOperations operations, TarantoolSpaceMetadata metadata)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SelectProxyOperation<T>
build()
SelectProxyOperation.Builder<T>
withArgumentsMapper(MessagePackObjectMapper argumentsMapper)
SelectProxyOperation.Builder<T>
withClient(TarantoolCallOperations client)
SelectProxyOperation.Builder<T>
withConditions(Conditions conditions)
SelectProxyOperation.Builder<T>
withFunctionName(String functionName)
SelectProxyOperation.Builder<T>
withRequestTimeout(int requestTimeout)
SelectProxyOperation.Builder<T>
withResultMapper(CallResultMapper<T,SingleValueCallResult<T>> resultMapper)
SelectProxyOperation.Builder<T>
withSpaceName(String spaceName)
-
-
-
Constructor Detail
-
Builder
public Builder(TarantoolMetadataOperations operations, TarantoolSpaceMetadata metadata)
-
-
Method Detail
-
withClient
public SelectProxyOperation.Builder<T> withClient(TarantoolCallOperations client)
-
withSpaceName
public SelectProxyOperation.Builder<T> withSpaceName(String spaceName)
-
withFunctionName
public SelectProxyOperation.Builder<T> withFunctionName(String functionName)
-
withConditions
public SelectProxyOperation.Builder<T> withConditions(Conditions conditions)
-
withArgumentsMapper
public SelectProxyOperation.Builder<T> withArgumentsMapper(MessagePackObjectMapper argumentsMapper)
-
withResultMapper
public SelectProxyOperation.Builder<T> withResultMapper(CallResultMapper<T,SingleValueCallResult<T>> resultMapper)
-
withRequestTimeout
public SelectProxyOperation.Builder<T> withRequestTimeout(int requestTimeout)
-
build
public SelectProxyOperation<T> build()
-
-