public class BufferHolderToBufferDecoder extends BufferHolderToBufferCodec implements IDecoder<IByteBufferHolder,ByteBuffer>
IByteBufferHolder into a ByteBuffer.| Constructor and Description |
|---|
BufferHolderToBufferDecoder() |
| Modifier and Type | Method and Description |
|---|---|
void |
decode(ISession session,
IByteBufferHolder data,
List<ByteBuffer> out)
Decodes data from one type to another one.
|
getInboundType, getOutboundTypeclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetInboundType, getOutboundTypepublic void decode(ISession session, IByteBufferHolder data, List<ByteBuffer> out) throws Exception
IDecoder
Decoders that do not produce an output (i.e. the O parameter is
Void) cannot change the object passed as the data
argument. They should not also store it for future use as its state can
be changed.
The above limitations regarding the data argument do not apply to
decoders that produce an output.
decode in interface IDecoder<IByteBufferHolder,ByteBuffer>session - the ISession which the passed data belongs todata - the data to decode to another oneout - the List to which the decoded data should be added, or
null if O is VoidException - is thrown, if an error occurCopyright © 2017–2022 SNF4J.ORG. All rights reserved.