Class PongWebSocketFrame
- java.lang.Object
-
- org.jboss.netty.handler.codec.http.websocketx.WebSocketFrame
-
- org.jboss.netty.handler.codec.http.websocketx.PongWebSocketFrame
-
public class PongWebSocketFrame extends WebSocketFrame
Web Socket frame containing binary data
-
-
Constructor Summary
Constructors Constructor Description PongWebSocketFrame()
Creates a new empty pong frame.PongWebSocketFrame(boolean finalFragment, int rsv, ChannelBuffer binaryData)
Creates a new pong frame with the specified binary dataPongWebSocketFrame(ChannelBuffer binaryData)
Creates a new pong frame with the specified binary data.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
-
Methods inherited from class org.jboss.netty.handler.codec.http.websocketx.WebSocketFrame
getBinaryData, getRsv, isFinalFragment, setBinaryData, setFinalFragment, setRsv
-
-
-
-
Constructor Detail
-
PongWebSocketFrame
public PongWebSocketFrame()
Creates a new empty pong frame.
-
PongWebSocketFrame
public PongWebSocketFrame(ChannelBuffer binaryData)
Creates a new pong frame with the specified binary data.- Parameters:
binaryData
- the content of the frame.
-
PongWebSocketFrame
public PongWebSocketFrame(boolean finalFragment, int rsv, ChannelBuffer binaryData)
Creates a new pong frame with the specified binary data- Parameters:
finalFragment
- flag indicating if this frame is the final fragmentrsv
- reserved bits used for protocol extensionsbinaryData
- the content of the frame.
-
-