Uses of Interface
io.netty.handler.codec.memcache.MemcacheMessage
-
Packages that use MemcacheMessage Package Description io.netty.handler.codec.memcache Common superset of ascii and binary classes.io.netty.handler.codec.memcache.binary Implementations and Interfaces for the Memcache Binary protocol. -
-
Uses of MemcacheMessage in io.netty.handler.codec.memcache
Classes in io.netty.handler.codec.memcache with type parameters of type MemcacheMessage Modifier and Type Class Description class
AbstractMemcacheObjectAggregator<H extends MemcacheMessage>
AChannelHandler
that aggregates anMemcacheMessage
and its followingMemcacheContent
s into a singleMemcacheMessage
with no followingMemcacheContent
s.class
AbstractMemcacheObjectEncoder<M extends MemcacheMessage>
A general purposeAbstractMemcacheObjectEncoder
that encodesMemcacheMessage
s.Subinterfaces of MemcacheMessage in io.netty.handler.codec.memcache Modifier and Type Interface Description interface
FullMemcacheMessage
CombinesMemcacheMessage
andLastMemcacheContent
into one message.Methods in io.netty.handler.codec.memcache that return MemcacheMessage Modifier and Type Method Description MemcacheMessage
MemcacheMessage. retain()
Increases the reference count by1
.MemcacheMessage
MemcacheMessage. retain(int increment)
Increases the reference count by the specifiedincrement
.MemcacheMessage
MemcacheMessage. touch()
MemcacheMessage
MemcacheMessage. touch(java.lang.Object hint)
-
Uses of MemcacheMessage in io.netty.handler.codec.memcache.binary
Subinterfaces of MemcacheMessage in io.netty.handler.codec.memcache.binary Modifier and Type Interface Description interface
BinaryMemcacheMessage
An interface that defines a binary Memcache message, providing common properties forBinaryMemcacheRequest
andBinaryMemcacheResponse
.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 MemcacheMessage 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
.
-