Uses of Class
io.tarantool.driver.protocol.TarantoolRequest
-
Packages that use TarantoolRequest Package Description io.tarantool.driver.api.connection Classes for working with connections to Tarantool instances.io.tarantool.driver.codecs Contains implementations of Netty codecsio.tarantool.driver.core Driver core classesio.tarantool.driver.core.connection Contains classes for connection establishing and selection strategy invocation algorithms.io.tarantool.driver.protocol.requests This sub-package is dedicated to Tarantool operation requests -
-
Uses of TarantoolRequest in io.tarantool.driver.api.connection
Methods in io.tarantool.driver.api.connection with parameters of type TarantoolRequest Modifier and Type Method Description <T> CompletableFuture<T>
TarantoolConnection. sendRequest(TarantoolRequest request, MessagePackValueMapper resultMapper)
Send a prepared request to the Tarantool server and flush the buffer -
Uses of TarantoolRequest in io.tarantool.driver.codecs
Methods in io.tarantool.driver.codecs with parameters of type TarantoolRequest Modifier and Type Method Description protected void
MessagePackFrameEncoder. encode(io.netty.channel.ChannelHandlerContext ctx, TarantoolRequest tarantoolRequest, io.netty.buffer.ByteBuf byteBuf)
-
Uses of TarantoolRequest in io.tarantool.driver.core
Methods in io.tarantool.driver.core with parameters of type TarantoolRequest Modifier and Type Method Description <T> CompletableFuture<T>
RequestFutureManager. submitRequest(TarantoolRequest request, int requestTimeout, MessagePackValueMapper resultMapper)
Submit a request ID for tracking.<T> CompletableFuture<T>
RequestFutureManager. submitRequest(TarantoolRequest request, MessagePackValueMapper resultMapper)
Submit a request ID for tracking. -
Uses of TarantoolRequest in io.tarantool.driver.core.connection
Methods in io.tarantool.driver.core.connection with parameters of type TarantoolRequest Modifier and Type Method Description <T> CompletableFuture<T>
TarantoolConnectionImpl. sendRequest(TarantoolRequest request, MessagePackValueMapper resultMapper)
-
Uses of TarantoolRequest in io.tarantool.driver.protocol.requests
Subclasses of TarantoolRequest in io.tarantool.driver.protocol.requests Modifier and Type Class Description class
TarantoolAuthRequest
Authentication request.class
TarantoolCallRequest
Call request.class
TarantoolDeleteRequest
Delete request.class
TarantoolEvalRequest
Eval request.class
TarantoolInsertRequest
Insert request.class
TarantoolReplaceRequest
Replace request.class
TarantoolSelectRequest
Select request.class
TarantoolUpdateRequest
Update request.class
TarantoolUpsertRequest
Upsert request.
-