public class BufferHolderToBufferEncoder extends BufferHolderToBufferCodec implements IEncoder<IByteBufferHolder,ByteBuffer>
IByteBufferHolder into a ByteBuffer.| Constructor and Description |
|---|
BufferHolderToBufferEncoder() |
| Modifier and Type | Method and Description |
|---|---|
void |
encode(ISession session,
IByteBufferHolder data,
List<ByteBuffer> out)
Encodes data from one type to another one.
|
getInboundType, getOutboundTypeclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetInboundType, getOutboundTypepublic void encode(ISession session, IByteBufferHolder data, List<ByteBuffer> out) throws Exception
IEncoder
Encoders 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
encoders that produce an output.
encode in interface IEncoder<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.