| Package | Description |
|---|---|
| javax.net.websocket.extensions |
| Modifier and Type | Interface and Description |
|---|---|
static interface |
Frame.Control
Super type for all the websocket control frames.
|
static interface |
Frame.Control.Close
A web socket Close frame.
|
static interface |
Frame.Control.Ping
A web socket Ping frame.
|
static interface |
Frame.Control.Pong
A web socket Pong frame.
|
static interface |
Frame.Data
Common super-type for all the web socket frames that carry application data.
|
static interface |
Frame.Data.Binary
A binary data frame
|
static interface |
Frame.Data.Binary.Continuation
A kind of binary frame that represents a fragment of a message in a series of such frames
that, re-assembled, form a complete text message.
|
static interface |
Frame.Data.Text
A text data frame.
|
static interface |
Frame.Data.Text.Continuation
A kind of text frame that represents a fragment of a message in a series of such frames
that, re-assembled, form a complete text message.
|
| Modifier and Type | Method and Description |
|---|---|
void |
FrameHandler.handleFrame(Frame f)
This method is invoked whenever the implementation is ready to invoke this framehandler
as part of the framehandler chain.
|
Copyright © 2012 Oracle and/or its affiliates. All rights reserved.