Package io.tarantool.driver.protocol
Interface Packable
-
- All Superinterfaces:
Serializable
- All Known Subinterfaces:
TarantoolField
,TarantoolTuple
,TupleOperation
- All Known Implementing Classes:
TarantoolFieldImpl
,TarantoolHeader
,TarantoolNullField
,TarantoolRequestBody
,TarantoolTupleImpl
,TupleOperationAdd
,TupleOperationBitwiseAnd
,TupleOperationBitwiseOr
,TupleOperationBitwiseXor
,TupleOperationDelete
,TupleOperationInsert
,TupleOperationSet
,TupleOperationSubtract
,TupleSpliceOperation
public interface Packable extends Serializable
Classes implementing this interface can be converted into MessagePack representation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.msgpack.value.Value
toMessagePackValue(MessagePackObjectMapper mapper)
Convert this instance into a corresponding MessagePackValue
-
-
-
Method Detail
-
toMessagePackValue
org.msgpack.value.Value toMessagePackValue(MessagePackObjectMapper mapper)
Convert this instance into a corresponding MessagePackValue
- Parameters:
mapper
- configured Java objects to entities mapper- Returns:
- MessagePack entity
-
-