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