| Interface | Description |
|---|---|
| Extension |
The Extension interface represents a web socket extension.
|
| Frame |
Frame is the top level interface that represents some kind of web socket frame.
|
| Frame.Control |
Super type for all the websocket control frames.
|
| Frame.Control.Close |
A web socket Close frame.
|
| Frame.Control.Ping |
A web socket Ping frame.
|
| Frame.Control.Pong |
A web socket Pong frame.
|
| Frame.Data |
Common super-type for all the web socket frames that carry application data.
|
| Frame.Data.Binary |
A binary data frame
|
| 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.
|
| Frame.Data.Text |
A text data frame.
|
| 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.
|
| Class | Description |
|---|---|
| FrameBuilder |
A factory class for building Frames.
|
| FrameHandler |
A FrameHandler is a link in the chain of handlers associated with the web socket extensions
configured for an endpoint.
|
Copyright © 2012. All Rights Reserved.