Class FramePipes.In2Out
- java.lang.Object
-
- org.eclipse.jetty.websocket.common.io.FramePipes.In2Out
-
- All Implemented Interfaces:
IncomingFrames
- Enclosing class:
- FramePipes
private static class FramePipes.In2Out extends java.lang.Object implements IncomingFrames
-
-
Field Summary
Fields Modifier and Type Field Description private OutgoingFrames
outgoing
-
Constructor Summary
Constructors Constructor Description In2Out(OutgoingFrames outgoing)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
incomingFrame(Frame frame)
Process the incoming frame.
-
-
-
Field Detail
-
outgoing
private OutgoingFrames outgoing
-
-
Constructor Detail
-
In2Out
public In2Out(OutgoingFrames outgoing)
-
-
Method Detail
-
incomingFrame
public void incomingFrame(Frame frame)
Description copied from interface:IncomingFrames
Process the incoming frame.Note: if you need to hang onto any information from the frame, be sure to copy it, as the information contained in the Frame will be released and/or reused by the implementation.
- Specified by:
incomingFrame
in interfaceIncomingFrames
- Parameters:
frame
- the frame to process
-
-