|
Apache Tomcat 7.0.54 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.catalina.websocket.WsFrame
@Deprecated public class WsFrame
Represents a complete WebSocket frame with the exception of the payload for non-control frames.
Method Summary | |
---|---|
boolean |
getFin()
Deprecated. |
byte[] |
getMask()
Deprecated. |
byte |
getOpCode()
Deprecated. |
ByteBuffer |
getPayLoad()
Deprecated. |
long |
getPayLoadLength()
Deprecated. |
int |
getRsv()
Deprecated. |
boolean |
isControl()
Deprecated. |
static WsFrame |
nextFrame(UpgradeProcessor<?> processor,
boolean block)
Deprecated. Read the next WebSocket frame, reading data from the processor as necessary. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public boolean getFin()
public int getRsv()
public byte getOpCode()
public boolean isControl()
public byte[] getMask()
public long getPayLoadLength()
public ByteBuffer getPayLoad()
public static WsFrame nextFrame(UpgradeProcessor<?> processor, boolean block) throws IOException
processor
- Processor associated with the WebSocket connection on
which the frame has been sentblock
- Should this method block until a frame is presented if no
data is currently available to process. Note that is a
single byte is available, this method will block until the
complete frame (excluding payload for non-control frames) is
available.
IOException
- If a problem occurs processing the frame. Any
exception will trigger the closing of the WebSocket
connection.
|
Apache Tomcat 7.0.54 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |