public class SctpInboundByteStreamHandler extends MessageToMessageDecoder<SctpMessage>
SctpMessages which belong to a application protocol form a specific
SCTP Stream and decode it as ByteBuf.ChannelHandler.Sharable| Constructor and Description |
|---|
SctpInboundByteStreamHandler(int protocolIdentifier,
int streamIdentifier) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
acceptInboundMessage(Object msg)
Returns
true if the given message should be handled. |
protected boolean |
acceptInboundMessage(SctpMessage msg) |
protected void |
decode(ChannelHandlerContext ctx,
SctpMessage msg,
List<Object> out)
Decode from one message to an other.
|
channelRead, channelReadCompletechannelActive, channelInactive, channelRegistered, channelUnregistered, channelWritabilityChanged, exceptionCaught, userEventTriggeredensureNotSharable, handlerAdded, handlerRemoved, isSharableclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waithandlerAdded, handlerRemovedpublic SctpInboundByteStreamHandler(int protocolIdentifier,
int streamIdentifier)
streamIdentifier - accepted stream number, this should be >=0 or <= max stream number of the association.protocolIdentifier - supported application protocol.public final boolean acceptInboundMessage(Object msg) throws Exception
MessageToMessageDecodertrue if the given message should be handled. If false it will be passed to the next
ChannelInboundHandler in the ChannelPipeline.acceptInboundMessage in class MessageToMessageDecoder<SctpMessage>Exceptionprotected boolean acceptInboundMessage(SctpMessage msg)
protected void decode(ChannelHandlerContext ctx, SctpMessage msg, List<Object> out) throws Exception
MessageToMessageDecoderdecode in class MessageToMessageDecoder<SctpMessage>ctx - the ChannelHandlerContext which this MessageToMessageDecoder belongs tomsg - the message to decode to an other oneout - the List to which decoded messages should be addedException - is thrown if an error occursCopyright © 2008–2025 The Netty Project. All rights reserved.