public class Encoder extends Object implements IEncoder<ByteBuffer,ByteBuffer>
| Constructor and Description |
|---|
Encoder() |
| Modifier and Type | Method and Description |
|---|---|
void |
encode(ISession session,
ByteBuffer data,
List<ByteBuffer> out)
Encodes data from one type to another one.
|
Class<ByteBuffer> |
getInboundType()
Returns the type of the accepted inbound objects.
|
Class<ByteBuffer> |
getOutboundType()
Returns the type of the produced outbound objects.
|
public Class<ByteBuffer> getInboundType()
ICodecgetInboundType in interface ICodec<ByteBuffer,ByteBuffer>public Class<ByteBuffer> getOutboundType()
ICodecgetOutboundType in interface ICodec<ByteBuffer,ByteBuffer>public void encode(ISession session, ByteBuffer 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<ByteBuffer,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.