|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use DecodingState | |
|---|---|
| org.littleshoot.util.mina | |
| org.littleshoot.util.mina.decode.binary | |
| Uses of DecodingState in org.littleshoot.util.mina |
|---|
| Classes in org.littleshoot.util.mina that implement DecodingState | |
|---|---|
class |
ConsumeToCrlfDecodingState
A decoder which writes all read bytes in to a known Bytes
context until a CRLF has been encountered. |
class |
ConsumeToLinearWhitespaceDecodingState
Consumes a ByteBuffer up to linear whitespace. |
class |
ConsumeToTerminatorDecodingState
Consumes until a fixed (ASCII) character is reached. |
class |
CrlfDecodingState
Decodes a single CRLF. |
class |
DecodingStateMachine
Taken from AsyncWeb. |
class |
FixedLengthDecodingState
A DecodingState which consumes all received bytes until a configured
number of read bytes has been reached. |
class |
SkippingState
Skips data until a byte other than the byte to skip is reached. |
class |
SpaceSkippingState
Skips tabs and spaces. |
| Methods in org.littleshoot.util.mina that return DecodingState | |
|---|---|
DecodingState |
SkippingState.decode(org.littleshoot.mina.common.ByteBuffer in,
org.littleshoot.mina.filter.codec.ProtocolDecoderOutput out)
|
DecodingState |
FixedLengthDecodingState.decode(org.littleshoot.mina.common.ByteBuffer in,
org.littleshoot.mina.filter.codec.ProtocolDecoderOutput out)
|
DecodingState |
DecodingStateMachine.decode(org.littleshoot.mina.common.ByteBuffer in,
org.littleshoot.mina.filter.codec.ProtocolDecoderOutput out)
|
DecodingState |
DecodingState.decode(org.littleshoot.mina.common.ByteBuffer in,
org.littleshoot.mina.filter.codec.ProtocolDecoderOutput out)
Decodes the input for this state. |
DecodingState |
CrlfDecodingState.decode(org.littleshoot.mina.common.ByteBuffer in,
org.littleshoot.mina.filter.codec.ProtocolDecoderOutput out)
|
DecodingState |
ConsumeToTerminatorDecodingState.decode(org.littleshoot.mina.common.ByteBuffer in,
org.littleshoot.mina.filter.codec.ProtocolDecoderOutput out)
|
DecodingState |
ConsumeToCrlfDecodingState.decode(org.littleshoot.mina.common.ByteBuffer in,
org.littleshoot.mina.filter.codec.ProtocolDecoderOutput out)
|
protected abstract DecodingState |
SkippingState.finishDecode()
|
protected abstract DecodingState |
CrlfDecodingState.finishDecode(boolean foundCRLF,
org.littleshoot.mina.filter.codec.ProtocolDecoderOutput out)
|
protected abstract DecodingState |
FixedLengthDecodingState.finishDecode(org.littleshoot.mina.common.ByteBuffer readData,
org.littleshoot.mina.filter.codec.ProtocolDecoderOutput out)
|
protected abstract DecodingState |
ConsumeToCrlfDecodingState.finishDecode(org.littleshoot.mina.common.ByteBuffer product,
org.littleshoot.mina.filter.codec.ProtocolDecoderOutput out)
|
protected abstract DecodingState |
ConsumeToTerminatorDecodingState.finishDecode(byte foundTerminator,
org.littleshoot.mina.common.ByteBuffer product,
org.littleshoot.mina.filter.codec.ProtocolDecoderOutput out)
|
protected abstract DecodingState |
DecodingStateMachine.finishDecode(List<Object> childProducts,
org.littleshoot.mina.filter.codec.ProtocolDecoderOutput out)
|
protected abstract DecodingState |
DecodingStateMachine.init()
|
DecodingState |
DecodingStateFactory.newState()
Creates a new DecodingState. |
| Uses of DecodingState in org.littleshoot.util.mina.decode.binary |
|---|
| Classes in org.littleshoot.util.mina.decode.binary that implement DecodingState | |
|---|---|
class |
UnsignedIntDecodingState
Decoding state for reading a single unsigned int. |
class |
UnsignedShortDecodingState
Decoding state for reading a single unsigned short. |
| Methods in org.littleshoot.util.mina.decode.binary that return DecodingState | |
|---|---|
DecodingState |
UnsignedShortDecodingState.decode(org.littleshoot.mina.common.ByteBuffer in,
org.littleshoot.mina.filter.codec.ProtocolDecoderOutput out)
|
DecodingState |
UnsignedIntDecodingState.decode(org.littleshoot.mina.common.ByteBuffer in,
org.littleshoot.mina.filter.codec.ProtocolDecoderOutput out)
|
protected abstract DecodingState |
UnsignedShortDecodingState.finishDecode(int decoded,
org.littleshoot.mina.filter.codec.ProtocolDecoderOutput out)
Called on the subclass when the unsigned short has been successfully decoded. |
protected abstract DecodingState |
UnsignedIntDecodingState.finishDecode(long decodedShort,
org.littleshoot.mina.filter.codec.ProtocolDecoderOutput out)
Called on the subclass when the unsigned int has been successfully decoded. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||