Package io.netty.handler.codec.memcache
Interface MemcacheMessage
-
- All Superinterfaces:
io.netty.handler.codec.DecoderResultProvider,MemcacheObject,io.netty.util.ReferenceCounted
- All Known Subinterfaces:
BinaryMemcacheMessage,BinaryMemcacheRequest,BinaryMemcacheResponse,FullBinaryMemcacheRequest,FullBinaryMemcacheResponse,FullMemcacheMessage
- All Known Implementing Classes:
AbstractBinaryMemcacheMessage,DefaultBinaryMemcacheRequest,DefaultBinaryMemcacheResponse,DefaultFullBinaryMemcacheRequest,DefaultFullBinaryMemcacheResponse
@UnstableApi public interface MemcacheMessage extends MemcacheObject, io.netty.util.ReferenceCounted
Marker interface for both ascii and binary messages.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MemcacheMessageretain()Increases the reference count by1.MemcacheMessageretain(int increment)Increases the reference count by the specifiedincrement.MemcacheMessagetouch()MemcacheMessagetouch(Object hint)
-
-
-
Method Detail
-
retain
MemcacheMessage retain()
Increases the reference count by1.- Specified by:
retainin interfaceio.netty.util.ReferenceCounted
-
retain
MemcacheMessage retain(int increment)
Increases the reference count by the specifiedincrement.- Specified by:
retainin interfaceio.netty.util.ReferenceCounted
-
touch
MemcacheMessage touch()
- Specified by:
touchin interfaceio.netty.util.ReferenceCounted
-
touch
MemcacheMessage touch(Object hint)
- Specified by:
touchin interfaceio.netty.util.ReferenceCounted
-
-