Class BinaryWebSocketFrame
java.lang.Object
org.jboss.netty.handler.codec.http.websocketx.WebSocketFrame
org.jboss.netty.handler.codec.http.websocketx.BinaryWebSocketFrame
Web Socket frame containing binary data
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new empty binary frame.BinaryWebSocketFrame
(boolean finalFragment, int rsv, ChannelBuffer binaryData) Creates a new binary frame with the specified binary data and the final fragment flag.BinaryWebSocketFrame
(ChannelBuffer binaryData) Creates a new binary frame with the specified binary data. -
Method Summary
Methods inherited from class org.jboss.netty.handler.codec.http.websocketx.WebSocketFrame
getBinaryData, getRsv, isFinalFragment, setBinaryData, setFinalFragment, setRsv
-
Constructor Details
-
BinaryWebSocketFrame
public BinaryWebSocketFrame()Creates a new empty binary frame. -
BinaryWebSocketFrame
Creates a new binary frame with the specified binary data. The final fragment flag is set to true.- Parameters:
binaryData
- the content of the frame.
-
BinaryWebSocketFrame
Creates a new binary frame with the specified binary data and the final fragment flag.- Parameters:
finalFragment
- flag indicating if this frame is the final fragmentrsv
- reserved bits used for protocol extensionsbinaryData
- the content of the frame.
-
-
Method Details