Uses of Class
io.tarantool.driver.protocol.TarantoolProtocolException
-
Packages that use TarantoolProtocolException Package Description io.tarantool.driver.exceptions Exception classes for internal client errors to be translated to userio.tarantool.driver.protocol Tarantool binary protocol primitives and helpersio.tarantool.driver.protocol.requests This sub-package is dedicated to Tarantool operation requests -
-
Uses of TarantoolProtocolException in io.tarantool.driver.exceptions
Subclasses of TarantoolProtocolException in io.tarantool.driver.exceptions Modifier and Type Class Description class
TarantoolDecoderException
Used in cases when a request or a response body cannot be transformed from/into MessagePack -
Uses of TarantoolProtocolException in io.tarantool.driver.protocol
Methods in io.tarantool.driver.protocol that throw TarantoolProtocolException Modifier and Type Method Description static TarantoolResponseBodyType
TarantoolResponseBodyType. fromCode(int code)
static TarantoolResponseType
TarantoolResponseType. fromCode(long code)
static TarantoolResponse
TarantoolResponse. fromMessagePack(org.msgpack.core.MessageUnpacker unpacker)
Create Tarantool response from the decoded binary data usingMessageUnpacker
static TarantoolHeader
TarantoolHeader. fromMessagePackValue(org.msgpack.value.Value value)
Creates an instance ofTarantoolHeader
from MessagePackValue
Constructors in io.tarantool.driver.protocol that throw TarantoolProtocolException Constructor Description NotEmptyTarantoolResponseBody(int code, org.msgpack.value.Value data)
Basic constructor.TarantoolErrorResult(Long syncId, Long errorCode, org.msgpack.value.Value body)
Basic constructor.TarantoolRequestBody(Map<Integer,?> body, MessagePackObjectMapper mapper)
Basic constructor. -
Uses of TarantoolProtocolException in io.tarantool.driver.protocol.requests
-