Package | Description |
---|---|
io.netty.handler.codec.memcache.binary |
Implementations and Interfaces for the Memcache Binary protocol.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractBinaryMemcacheDecoder<M extends BinaryMemcacheMessage>
Decoder for both
BinaryMemcacheRequest and BinaryMemcacheResponse . |
class |
AbstractBinaryMemcacheEncoder<M extends BinaryMemcacheMessage>
A
MessageToByteEncoder that encodes binary memcache messages into bytes. |
Modifier and Type | Interface and Description |
---|---|
interface |
BinaryMemcacheRequest
Represents a full
BinaryMemcacheRequest , which contains the header and optional key and extras. |
interface |
BinaryMemcacheResponse
Represents a full
BinaryMemcacheResponse , which contains the header and optional key and extras. |
interface |
FullBinaryMemcacheRequest
A
BinaryMemcacheRequest that also includes the content. |
interface |
FullBinaryMemcacheResponse
A
BinaryMemcacheResponse that also includes the content. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractBinaryMemcacheMessage
Default implementation of a
BinaryMemcacheMessage . |
class |
DefaultBinaryMemcacheRequest
The default implementation of the
BinaryMemcacheRequest . |
class |
DefaultBinaryMemcacheResponse
The default implementation of the
BinaryMemcacheResponse . |
class |
DefaultFullBinaryMemcacheRequest
The default implementation of a
FullBinaryMemcacheRequest . |
class |
DefaultFullBinaryMemcacheResponse
The default implementation of a
FullBinaryMemcacheResponse . |
Modifier and Type | Method and Description |
---|---|
BinaryMemcacheMessage |
AbstractBinaryMemcacheMessage.retain() |
BinaryMemcacheMessage |
BinaryMemcacheMessage.retain()
Increases the reference count by
1 . |
BinaryMemcacheMessage |
AbstractBinaryMemcacheMessage.retain(int increment) |
BinaryMemcacheMessage |
BinaryMemcacheMessage.retain(int increment)
Increases the reference count by the specified
increment . |
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 |
BinaryMemcacheMessage.touch() |
BinaryMemcacheMessage |
AbstractBinaryMemcacheMessage.touch(Object hint) |
BinaryMemcacheMessage |
BinaryMemcacheMessage.touch(Object hint) |
Modifier and Type | Method and Description |
---|---|
protected FullMemcacheMessage |
BinaryMemcacheObjectAggregator.beginAggregation(BinaryMemcacheMessage start,
ByteBuf content) |
Copyright © 2008–2024 The Netty Project. All rights reserved.