public interface MessageListProcessor<T>
int process(T value) throws Exception
MessageList.forEach(MessageListProcessor) will determine
the index of the next element to be processed based on this value. Usually, an implementation will
return 1 to advance the index by 1. Note that returning a non-positive value is
allowed where a negative value advances the index in the opposite direction and zero leaves the index
as-is.ExceptionCopyright © 2008-2013 The Netty Project. All Rights Reserved.