Package org.apache.mina.filter.codec
Class AbstractProtocolDecoderOutput
- java.lang.Object
-
- org.apache.mina.filter.codec.AbstractProtocolDecoderOutput
-
- All Implemented Interfaces:
ProtocolDecoderOutput
public abstract class AbstractProtocolDecoderOutput extends Object implements ProtocolDecoderOutput
AProtocolDecoderOutput
based on queue.- Author:
- Apache MINA Project
-
-
Constructor Summary
Constructors Constructor Description AbstractProtocolDecoderOutput()
Creates a new instance of a AbstractProtocolDecoderOutput
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Queue<Object>
getMessageQueue()
void
write(Object message)
Callback forProtocolDecoder
to generate decoded messages.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.mina.filter.codec.ProtocolDecoderOutput
flush
-
-
-
-
Method Detail
-
write
public void write(Object message)
Callback forProtocolDecoder
to generate decoded messages.ProtocolDecoder
must callProtocolDecoderOutput.write(Object)
for each decoded messages.- Specified by:
write
in interfaceProtocolDecoderOutput
- Parameters:
message
- the decoded message
-
-