Uses of Interface
io.netty.handler.codec.memcache.binary.BinaryMemcacheMessage
-
Packages that use BinaryMemcacheMessage Package Description io.netty.handler.codec.memcache.binary Implementations and Interfaces for the Memcache Binary protocol. -
-
Uses of BinaryMemcacheMessage in io.netty.handler.codec.memcache.binary
Classes in io.netty.handler.codec.memcache.binary with type parameters of type BinaryMemcacheMessage Modifier and Type Class Description class
AbstractBinaryMemcacheDecoder<M extends BinaryMemcacheMessage>
Decoder for bothBinaryMemcacheRequest
andBinaryMemcacheResponse
.class
AbstractBinaryMemcacheEncoder<M extends BinaryMemcacheMessage>
AMessageToByteEncoder
that encodes binary memcache messages into bytes.Subinterfaces of BinaryMemcacheMessage in io.netty.handler.codec.memcache.binary Modifier and Type Interface Description interface
BinaryMemcacheRequest
Represents a fullBinaryMemcacheRequest
, which contains the header and optional key and extras.interface
BinaryMemcacheResponse
Represents a fullBinaryMemcacheResponse
, which contains the header and optional key and extras.interface
FullBinaryMemcacheRequest
ABinaryMemcacheRequest
that also includes the content.interface
FullBinaryMemcacheResponse
ABinaryMemcacheResponse
that also includes the content.Classes in io.netty.handler.codec.memcache.binary that implement BinaryMemcacheMessage Modifier and Type Class Description class
AbstractBinaryMemcacheMessage
Default implementation of aBinaryMemcacheMessage
.class
DefaultBinaryMemcacheRequest
The default implementation of theBinaryMemcacheRequest
.class
DefaultBinaryMemcacheResponse
The default implementation of theBinaryMemcacheResponse
.class
DefaultFullBinaryMemcacheRequest
The default implementation of aFullBinaryMemcacheRequest
.class
DefaultFullBinaryMemcacheResponse
The default implementation of aFullBinaryMemcacheResponse
.Methods in io.netty.handler.codec.memcache.binary that return BinaryMemcacheMessage Modifier and Type Method Description BinaryMemcacheMessage
AbstractBinaryMemcacheMessage. retain()
BinaryMemcacheMessage
AbstractBinaryMemcacheMessage. retain(int increment)
BinaryMemcacheMessage
BinaryMemcacheMessage. retain()
Increases the reference count by1
.BinaryMemcacheMessage
BinaryMemcacheMessage. retain(int increment)
Increases the reference count by the specifiedincrement
.BinaryMemcacheMessage
AbstractBinaryMemcacheMessage. setCas(long cas)
BinaryMemcacheMessage
BinaryMemcacheMessage. setCas(long cas)
Sets the CAS identifier.BinaryMemcacheMessage
AbstractBinaryMemcacheMessage. setDataType(byte dataType)
BinaryMemcacheMessage
BinaryMemcacheMessage. setDataType(byte dataType)
Sets the data type of the message.BinaryMemcacheMessage
AbstractBinaryMemcacheMessage. setExtras(ByteBuf extras)
BinaryMemcacheMessage
BinaryMemcacheMessage. setExtras(ByteBuf extras)
Sets the extras buffer on the message.BinaryMemcacheMessage
AbstractBinaryMemcacheMessage. setKey(ByteBuf key)
BinaryMemcacheMessage
BinaryMemcacheMessage. setKey(ByteBuf key)
Sets the key of the document.BinaryMemcacheMessage
AbstractBinaryMemcacheMessage. setMagic(byte magic)
BinaryMemcacheMessage
BinaryMemcacheMessage. setMagic(byte magic)
Sets the magic byte.BinaryMemcacheMessage
AbstractBinaryMemcacheMessage. setOpaque(int opaque)
BinaryMemcacheMessage
BinaryMemcacheMessage. setOpaque(int opaque)
Sets the opaque value.BinaryMemcacheMessage
AbstractBinaryMemcacheMessage. setOpcode(byte opcode)
BinaryMemcacheMessage
BinaryMemcacheMessage. setOpcode(byte code)
Sets the opcode for the message.BinaryMemcacheMessage
AbstractBinaryMemcacheMessage. setTotalBodyLength(int totalBodyLength)
BinaryMemcacheMessage
BinaryMemcacheMessage. setTotalBodyLength(int totalBodyLength)
Sets the total body length.BinaryMemcacheMessage
AbstractBinaryMemcacheMessage. touch()
BinaryMemcacheMessage
AbstractBinaryMemcacheMessage. touch(java.lang.Object hint)
BinaryMemcacheMessage
BinaryMemcacheMessage. touch()
BinaryMemcacheMessage
BinaryMemcacheMessage. touch(java.lang.Object hint)
Methods in io.netty.handler.codec.memcache.binary with parameters of type BinaryMemcacheMessage Modifier and Type Method Description protected FullMemcacheMessage
BinaryMemcacheObjectAggregator. beginAggregation(BinaryMemcacheMessage start, ByteBuf content)
-