Package org.apache.cassandra.net
Interface FrameDecoder.FrameProcessor
-
- All Known Implementing Classes:
AbstractMessageHandler
,CQLMessageHandler
,InboundMessageHandler
- Enclosing class:
- FrameDecoder
public static interface FrameDecoder.FrameProcessor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
process(FrameDecoder.Frame frame)
Frame processor that the frames should be handed off to.
-
-
-
Method Detail
-
process
boolean process(FrameDecoder.Frame frame) throws java.io.IOException
Frame processor that the frames should be handed off to.- Returns:
- true if more frames can be taken by the processor, false if the decoder should pause until it's explicitly resumed.
- Throws:
java.io.IOException
-
-