Class BinaryMemcacheRequestDecoder
java.lang.Object
io.netty.channel.ChannelHandlerAdapter
io.netty.channel.ChannelInboundHandlerAdapter
io.netty.handler.codec.ByteToMessageDecoder
io.netty.handler.codec.memcache.AbstractMemcacheObjectDecoder
io.netty.handler.codec.memcache.binary.AbstractBinaryMemcacheDecoder<BinaryMemcacheRequest>
io.netty.handler.codec.memcache.binary.BinaryMemcacheRequestDecoder
- All Implemented Interfaces:
ChannelHandler,ChannelInboundHandler
@UnstableApi
public class BinaryMemcacheRequestDecoder
extends AbstractBinaryMemcacheDecoder<BinaryMemcacheRequest>
The decoder part which takes care of decoding the request-specific headers.
-
Nested Class Summary
Nested classes/interfaces inherited from class io.netty.handler.codec.memcache.binary.AbstractBinaryMemcacheDecoder
AbstractBinaryMemcacheDecoder.StateNested classes/interfaces inherited from class io.netty.handler.codec.ByteToMessageDecoder
ByteToMessageDecoder.CumulatorNested classes/interfaces inherited from interface io.netty.channel.ChannelHandler
ChannelHandler.Sharable -
Field Summary
Fields inherited from class io.netty.handler.codec.memcache.binary.AbstractBinaryMemcacheDecoder
DEFAULT_MAX_CHUNK_SIZEFields inherited from class io.netty.handler.codec.ByteToMessageDecoder
COMPOSITE_CUMULATOR, MERGE_CUMULATOR -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected BinaryMemcacheRequestHelper method to create a upstream message when the incoming parsing did fail.protected BinaryMemcacheRequestdecodeHeader(ByteBuf in) Decode and return the parsedBinaryMemcacheMessage.Methods inherited from class io.netty.handler.codec.memcache.binary.AbstractBinaryMemcacheDecoder
channelInactive, decode, resetDecoderMethods inherited from class io.netty.handler.codec.ByteToMessageDecoder
actualReadableBytes, callDecode, channelRead, channelReadComplete, decodeLast, discardSomeReadBytes, handlerRemoved, handlerRemoved0, internalBuffer, isSingleDecode, setCumulator, setDiscardAfterReads, setSingleDecode, userEventTriggeredMethods inherited from class io.netty.channel.ChannelInboundHandlerAdapter
channelActive, channelRegistered, channelUnregistered, channelWritabilityChanged, exceptionCaughtMethods inherited from class io.netty.channel.ChannelHandlerAdapter
ensureNotSharable, handlerAdded, isSharableMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.netty.channel.ChannelHandler
handlerAdded
-
Constructor Details
-
BinaryMemcacheRequestDecoder
public BinaryMemcacheRequestDecoder() -
BinaryMemcacheRequestDecoder
public BinaryMemcacheRequestDecoder(int chunkSize)
-
-
Method Details
-
decodeHeader
Description copied from class:AbstractBinaryMemcacheDecoderDecode and return the parsedBinaryMemcacheMessage.- Specified by:
decodeHeaderin classAbstractBinaryMemcacheDecoder<BinaryMemcacheRequest>- Parameters:
in- the incoming buffer.- Returns:
- the decoded header.
-
buildInvalidMessage
Description copied from class:AbstractBinaryMemcacheDecoderHelper method to create a upstream message when the incoming parsing did fail.- Specified by:
buildInvalidMessagein classAbstractBinaryMemcacheDecoder<BinaryMemcacheRequest>- Returns:
- a message indicating a decoding failure.
-