public interface ProtocolDecoderOutput
ProtocolDecoder to generate decoded messages.
ProtocolDecoder must call write(Object) for each decoded
messages.| Modifier and Type | Method and Description |
|---|---|
void |
flush()
Flushes all messages you wrote via
write(Object) to
the next filter. |
void |
write(java.lang.Object message)
Callback for
ProtocolDecoder to generate decoded messages. |
void write(java.lang.Object message)
ProtocolDecoder to generate decoded messages.
ProtocolDecoder must call write(Object) for each
decoded messages.message - the decoded messagevoid flush()
write(Object) to
the next filter.