|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.mina.filter.codec.textline.TextLineDecoder
public class TextLineDecoder
A ProtocolDecoder
which decodes a text line into a string.
Constructor Summary | |
---|---|
TextLineDecoder()
Creates a new instance with the current default Charset
and LineDelimiter.AUTO delimiter. |
|
TextLineDecoder(java.nio.charset.Charset charset)
Creates a new instance with the spcified charset and LineDelimiter.AUTO delimiter. |
|
TextLineDecoder(java.nio.charset.Charset charset,
LineDelimiter delimiter)
Creates a new instance with the specified charset and the specified delimiter. |
Method Summary | |
---|---|
void |
decode(IoSession session,
ByteBuffer in,
ProtocolDecoderOutput out)
Decodes binary or protocol-specific content into higher-level message objects. |
void |
dispose(IoSession session)
Releases all resources related with this decoder. |
void |
finishDecode(IoSession session,
ProtocolDecoderOutput out)
Invoked when the specified session is closed. |
int |
getMaxLineLength()
Returns the allowed maximum size of the line to be decoded. |
void |
setMaxLineLength(int maxLineLength)
Sets the allowed maximum size of the line to be decoded. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public TextLineDecoder()
Charset
and LineDelimiter.AUTO
delimiter.
public TextLineDecoder(java.nio.charset.Charset charset)
LineDelimiter.AUTO
delimiter.
public TextLineDecoder(java.nio.charset.Charset charset, LineDelimiter delimiter)
Method Detail |
---|
public int getMaxLineLength()
BufferDataException
. The default
value is 1024 (1KB).
public void setMaxLineLength(int maxLineLength)
BufferDataException
. The default
value is 1024 (1KB).
public void decode(IoSession session, ByteBuffer in, ProtocolDecoderOutput out) throws java.lang.Exception
ProtocolDecoder
ProtocolDecoder.decode(IoSession, ByteBuffer, ProtocolDecoderOutput)
method with read data, and then the decoder implementation puts decoded
messages into ProtocolDecoderOutput
.
decode
in interface ProtocolDecoder
java.lang.Exception
- if the read data violated protocol specificationpublic void finishDecode(IoSession session, ProtocolDecoderOutput out) throws java.lang.Exception
ProtocolDecoder
ProtocolDecoder.decode(IoSession, ByteBuffer, ProtocolDecoderOutput)
method didn't process completely.
finishDecode
in interface ProtocolDecoder
java.lang.Exception
- if the read data violated protocol specificationpublic void dispose(IoSession session) throws java.lang.Exception
ProtocolDecoder
dispose
in interface ProtocolDecoder
java.lang.Exception
- if failed to dispose all resources
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |