@Deprecated public interface WebSocketFrame
Modifier and Type | Field and Description |
---|---|
static WebSocketFrame |
CLOSING_HANDSHAKE
Deprecated.
Closing handshake message (0xFF, 0x00)
|
Modifier and Type | Method and Description |
---|---|
ChannelBuffer |
getBinaryData()
Deprecated.
Returns the content of this frame as-is, with no UTF-8 decoding.
|
String |
getTextData()
Deprecated.
Converts the content of this frame into a UTF-8 string and returns the
converted string.
|
int |
getType()
Deprecated.
Returns the type of this frame.
|
boolean |
isBinary()
Deprecated.
Returns
true if and only if the content of this frame is an
arbitrary binary data. |
boolean |
isText()
Deprecated.
Returns
true if and only if the content of this frame is a string
encoded in UTF-8. |
void |
setData(int type,
ChannelBuffer binaryData)
Deprecated.
Sets the type and the content of this frame.
|
String |
toString()
Deprecated.
Returns the string representation of this frame.
|
static final WebSocketFrame CLOSING_HANDSHAKE
int getType()
0
is the
only allowed type according to the specification.boolean isText()
true
if and only if the content of this frame is a string
encoded in UTF-8.boolean isBinary()
true
if and only if the content of this frame is an
arbitrary binary data.ChannelBuffer getBinaryData()
String getTextData()
void setData(int type, ChannelBuffer binaryData)
type
- the type of the frame. 0
is the only allowed type currently.binaryData
- the content of the frame. If (type & 0x80 == 0),
it must be encoded in UTF-8.IllegalArgumentException
- if If (type & 0x80 == 0) and the data is not encoded
in UTF-8String toString()
getTextData()
.Copyright © 2008-2014 The Netty Project. All Rights Reserved.