@UnstableApi public abstract class AbstractMemcacheObjectAggregator<H extends MemcacheMessage> extends MessageAggregator<MemcacheObject,H,MemcacheContent,FullMemcacheMessage>
ChannelHandler
,将MemcacheMessage
及其随后的MemcacheContent
合并为一个MemcacheMessage
,但没有MemcacheContent
。
当您不想处理内容以块形式出现的memcache消息时,它非常有用。
将该处理程序插入ChannelPipeline
中的AbstractMemcacheObjectDecoder之后 。
例如,这里是二进制协议:
ChannelPipeline
p = ...;
...
p.addLast("decoder", new BinaryMemcacheRequestDecoder
());
p.addLast("aggregator", new BinaryMemcacheObjectAggregator
(1048576) );
...
p.addLast("encoder", new BinaryMemcacheResponseEncoder
());
p.addLast("handler", new YourMemcacheRequestHandler());
ChannelHandler.Sharable
Modifier | Constructor and Description |
---|---|
protected |
AbstractMemcacheObjectAggregator(int maxContentLength) |
Modifier and Type | Method and Description |
---|---|
protected boolean |
closeAfterContinueResponse(java.lang.Object msg)
在写入
MessageAggregator.newContinueResponse(Object, int, ChannelPipeline) 的结果后,确定通道是否应该关闭。
|
protected boolean |
ignoreContentAfterContinueResponse(java.lang.Object msg)
确定当前请求/响应的所有对象是否应该被忽略。
|
protected boolean |
isAggregated(MemcacheObject msg)
当且仅当指定的消息已经被聚合时才返回
true 。
|
protected boolean |
isContentLengthInvalid(H start, int maxContentLength)
确定消息
start 的内容长度是否已知,以及是否大于
maxContentLength 。
|
protected boolean |
isContentMessage(MemcacheObject msg)
当且仅当指定的消息是内容消息时才返回
true 。
|
protected boolean |
isLastContentMessage(MemcacheContent msg)
当且仅当指定的消息是最后一个内容消息时才返回
true 。
|
protected java.lang.Object |
newContinueResponse(H start, int maxContentLength, ChannelPipeline pipeline)
如有必要,返回指定开始消息的'continue response'。
|
acceptInboundMessage, aggregate, beginAggregation, channelInactive, channelReadComplete, ctx, decode, finishAggregation, handleOversizedMessage, handlerAdded, handlerRemoved, isHandlingOversizedMessage, isStartMessage, maxContentLength, maxCumulationBufferComponents, setMaxCumulationBufferComponents
channelRead
channelActive, channelRegistered, channelUnregistered, channelWritabilityChanged, exceptionCaught, userEventTriggered
ensureNotSharable, isSharable
protected AbstractMemcacheObjectAggregator(int maxContentLength)
protected boolean isContentMessage(MemcacheObject msg) throws java.lang.Exception
MessageAggregator
true
。
通常情况下,此方法作为return
声明与instanceof
:
return msg instanceof MyContentMessage;
isContentMessage
在课程
MessageAggregator<MemcacheObject,H extends MemcacheMessage,MemcacheContent,FullMemcacheMessage>
java.lang.Exception
protected boolean isLastContentMessage(MemcacheContent msg) throws java.lang.Exception
MessageAggregator
true
。
通常情况下,此方法以return
声明与instanceof
:
return msg instanceof MyLastContentMessage;
或与instanceof
和布尔字段检查:
return msg instanceof MyContentMessage && msg.isLastFragment();
isLastContentMessage
在课程
MessageAggregator<MemcacheObject,H extends MemcacheMessage,MemcacheContent,FullMemcacheMessage>
java.lang.Exception
protected boolean isAggregated(MemcacheObject msg) throws java.lang.Exception
MessageAggregator
true
。
如果此方法返回true
,则此处理程序将仅将消息按true
转发给下一个处理程序。
isAggregated
在课程
MessageAggregator<MemcacheObject,H extends MemcacheMessage,MemcacheContent,FullMemcacheMessage>
java.lang.Exception
protected boolean isContentLengthInvalid(H start, int maxContentLength)
MessageAggregator
start
的内容长度是否已知,并且是否大于
maxContentLength
。
isContentLengthInvalid
在课程
MessageAggregator<MemcacheObject,H extends MemcacheMessage,MemcacheContent,FullMemcacheMessage>
start
- 可能指示内容长度的消息。
maxContentLength
- 允许的最大内容长度。
true
如果消息start
的内容长度已知,并且它大于maxContentLength
。
否则为false
。
protected java.lang.Object newContinueResponse(H start, int maxContentLength, ChannelPipeline pipeline)
MessageAggregator
newContinueResponse
在课程
MessageAggregator<MemcacheObject,H extends MemcacheMessage,MemcacheContent,FullMemcacheMessage>
null
protected boolean closeAfterContinueResponse(java.lang.Object msg) throws java.lang.Exception
MessageAggregator
MessageAggregator.newContinueResponse(Object, int, ChannelPipeline)
的结果后是否应关闭通道。
closeAfterContinueResponse
在课程
MessageAggregator<MemcacheObject,H extends MemcacheMessage,MemcacheContent,FullMemcacheMessage>
msg
-从返回值
MessageAggregator.newContinueResponse(Object, int, ChannelPipeline)
。
true
如果信道应被关闭后的结果MessageAggregator.newContinueResponse(Object, int, ChannelPipeline)
被写入。
否则为false
。
java.lang.Exception
protected boolean ignoreContentAfterContinueResponse(java.lang.Object msg) throws java.lang.Exception
MessageAggregator
MessageAggregator.isContentMessage(Object)
返回true
时,消息将不再被忽略。
ignoreContentAfterContinueResponse
在课程
MessageAggregator<MemcacheObject,H extends MemcacheMessage,MemcacheContent,FullMemcacheMessage>
msg
-从返回值
MessageAggregator.newContinueResponse(Object, int, ChannelPipeline)
。
true
如果当前请求/响应的所有对象都应该被忽略。
否则为false
。
java.lang.Exception
Copyright © 2008–2018 The Netty Project. All rights reserved.