|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use DataFrame | |
|---|---|
| org.glassfish.grizzly.websockets | |
| org.glassfish.grizzly.websockets.draft06 | |
| org.glassfish.grizzly.websockets.draft07 | |
| org.glassfish.grizzly.websockets.frametypes | |
| Uses of DataFrame in org.glassfish.grizzly.websockets |
|---|
| Methods in org.glassfish.grizzly.websockets that return DataFrame | |
|---|---|
DataFrame |
FrameType.create(boolean fin,
byte[] data)
|
DataFrame |
BaseFrameType.create(boolean fin,
byte[] data)
|
DataFrame |
FrameCompletionHandler.getResult()
|
abstract DataFrame |
ProtocolHandler.parse(Buffer buffer)
|
DataFrame |
ProtocolHandler.unframe(Buffer buffer)
|
| Methods in org.glassfish.grizzly.websockets that return types with arguments of type DataFrame | |
|---|---|
GrizzlyFuture<DataFrame> |
ProtocolHandler.close(int code,
String reason)
|
GrizzlyFuture<DataFrame> |
WebSocket.send(byte[] data)
Send a binary frame to the remote end-point. |
GrizzlyFuture<DataFrame> |
ProtocolHandler.send(byte[] data)
|
GrizzlyFuture<DataFrame> |
DefaultWebSocket.send(byte[] data)
|
GrizzlyFuture<DataFrame> |
ProtocolHandler.send(DataFrame frame)
|
GrizzlyFuture<DataFrame> |
ProtocolHandler.send(DataFrame frame,
CompletionHandler<DataFrame> completionHandler)
|
GrizzlyFuture<DataFrame> |
WebSocket.send(String data)
Send a text frame to the remote end-point. |
GrizzlyFuture<DataFrame> |
ProtocolHandler.send(String data)
|
GrizzlyFuture<DataFrame> |
DefaultWebSocket.send(String data)
|
GrizzlyFuture<DataFrame> |
WebSocket.sendPing(byte[] data)
Sends a ping frame with the specified payload (if any). |
GrizzlyFuture<DataFrame> |
DefaultWebSocket.sendPing(byte[] data)
Sends a ping frame with the specified payload (if any). |
GrizzlyFuture<DataFrame> |
WebSocket.sendPong(byte[] data)
Sends a ping frame with the specified payload (if any). |
GrizzlyFuture<DataFrame> |
DefaultWebSocket.sendPong(byte[] data)
Sends a ping frame with the specified payload (if any). |
GrizzlyFuture<DataFrame> |
WebSocket.stream(boolean last,
byte[] fragment,
int off,
int len)
Sends a fragment of a complete message. |
GrizzlyFuture<DataFrame> |
ProtocolHandler.stream(boolean last,
byte[] bytes,
int off,
int len)
|
GrizzlyFuture<DataFrame> |
DefaultWebSocket.stream(boolean last,
byte[] bytes,
int off,
int len)
|
GrizzlyFuture<DataFrame> |
WebSocket.stream(boolean last,
String fragment)
Sends a fragment of a complete message. |
GrizzlyFuture<DataFrame> |
ProtocolHandler.stream(boolean last,
String fragment)
|
GrizzlyFuture<DataFrame> |
DefaultWebSocket.stream(boolean last,
String fragment)
|
| Methods in org.glassfish.grizzly.websockets with parameters of type DataFrame | |
|---|---|
protected byte |
ProtocolHandler.checkForLastFrame(DataFrame frame,
byte opcode)
|
void |
FrameCompletionHandler.completed(DataFrame result)
|
abstract byte[] |
ProtocolHandler.frame(DataFrame frame)
|
byte[] |
FrameType.getBytes(DataFrame dataFrame)
|
byte[] |
BaseFrameType.getBytes(DataFrame dataFrame)
|
void |
WebSocket.onClose(DataFrame frame)
This callback will be invoked when the remote end-point sent a closing frame. |
void |
DefaultWebSocket.onClose(DataFrame frame)
|
void |
WebSocketListener.onClose(WebSocket socket,
DataFrame frame)
Invoked when WebSocket.onClose(DataFrame) has been called on a
particular WebSocket instance. |
void |
WebSocketApplication.onClose(WebSocket socket,
DataFrame frame)
When a WebSocket.onClose(DataFrame) is invoked, the WebSocket
will be unassociated with this application and closed. |
void |
WebSocketAdapter.onClose(WebSocket socket,
DataFrame frame)
|
void |
WebSocket.onPing(DataFrame frame)
This callback will be invoked when the remote end-point has sent a ping frame. |
void |
DefaultWebSocket.onPing(DataFrame frame)
|
void |
WebSocket.onPong(DataFrame frame)
This callback will be invoked when the remote end-point has sent a pong frame. |
void |
DefaultWebSocket.onPong(DataFrame frame)
|
void |
FrameType.respond(WebSocket socket,
DataFrame frame)
|
GrizzlyFuture<DataFrame> |
ProtocolHandler.send(DataFrame frame)
|
GrizzlyFuture<DataFrame> |
ProtocolHandler.send(DataFrame frame,
CompletionHandler<DataFrame> completionHandler)
|
void |
FrameType.setPayload(DataFrame frame,
byte[] data)
|
void |
BaseFrameType.setPayload(DataFrame frame,
byte[] data)
|
void |
FrameCompletionHandler.updated(DataFrame result)
|
protected void |
ProtocolHandler.utf8Decode(boolean finalFragment,
byte[] data,
DataFrame dataFrame)
|
| Method parameters in org.glassfish.grizzly.websockets with type arguments of type DataFrame | |
|---|---|
GrizzlyFuture<DataFrame> |
ProtocolHandler.send(DataFrame frame,
CompletionHandler<DataFrame> completionHandler)
|
| Uses of DataFrame in org.glassfish.grizzly.websockets.draft06 |
|---|
| Subclasses of DataFrame in org.glassfish.grizzly.websockets.draft06 | |
|---|---|
class |
ClosingFrame
|
| Methods in org.glassfish.grizzly.websockets.draft06 that return DataFrame | |
|---|---|
DataFrame |
Draft06Handler.parse(Buffer buffer)
|
| Methods in org.glassfish.grizzly.websockets.draft06 with parameters of type DataFrame | |
|---|---|
byte[] |
Draft06Handler.frame(DataFrame frame)
|
| Uses of DataFrame in org.glassfish.grizzly.websockets.draft07 |
|---|
| Methods in org.glassfish.grizzly.websockets.draft07 that return DataFrame | |
|---|---|
DataFrame |
Draft07Handler.parse(Buffer buffer)
|
| Methods in org.glassfish.grizzly.websockets.draft07 with parameters of type DataFrame | |
|---|---|
byte[] |
Draft07Handler.frame(DataFrame frame)
|
| Uses of DataFrame in org.glassfish.grizzly.websockets.frametypes |
|---|
| Methods in org.glassfish.grizzly.websockets.frametypes that return DataFrame | |
|---|---|
DataFrame |
ClosingFrameType.create(boolean fin,
byte[] data)
|
| Methods in org.glassfish.grizzly.websockets.frametypes with parameters of type DataFrame | |
|---|---|
byte[] |
TextFrameType.getBytes(DataFrame dataFrame)
|
byte[] |
ContinuationFrameType.getBytes(DataFrame dataFrame)
|
void |
TextFrameType.respond(WebSocket socket,
DataFrame frame)
|
void |
PongFrameType.respond(WebSocket socket,
DataFrame frame)
|
void |
PingFrameType.respond(WebSocket socket,
DataFrame frame)
|
void |
ContinuationFrameType.respond(WebSocket socket,
DataFrame frame)
|
void |
ClosingFrameType.respond(WebSocket socket,
DataFrame frame)
|
void |
BinaryFrameType.respond(WebSocket socket,
DataFrame frame)
|
void |
TextFrameType.setPayload(DataFrame frame,
byte[] data)
|
void |
ContinuationFrameType.setPayload(DataFrame frame,
byte[] data)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||