javax.websocket (Java(TM) EE 7 Specification APIs) (original) (raw)
The ClientEndpointConfig is a special kind of endpoint configuration object that contains web socket configuration information specific only to client endpoints.
A marker interface for the close codes.
The Decoder interface holds member interfaces that define how a developer can provide the web socket container a way web socket messages into developer defined custom objects.
This interface defines how a custom object (of type T) is decoded from a web socket message in the form of a byte buffer.
This interface defines how a custom object is decoded from a web socket message in the form of a binary stream.
This interface defines how a custom object is decoded from a web socket message in the form of a string.
This interface defines how a custom object of type T is decoded from a web socket message in the form of a character stream.
The Encoder interface defines how developers can provide a way to convert their custom objects into web socket messages.
This interface defines how to provide a way to convert a custom object into a binary message.
This interface may be implemented by encoding algorithms that want to write the encoded object to a binary stream.
This interface defines how to provide a way to convert a custom object into a text message.
This interface may be implemented by encoding algorithms that want to write the encoded object to a character stream.
The endpoint configuration contains all the information needed during the handshake process for this end point.
A simple representation of a websocket extension as a name and map of extension parameters.
This member interface defines a single websocket extension parameter.
The handshake response represents the web socket-defined Http response that is the response to the opening handshake request.
Developers implement MessageHandlers in order to receive incoming messages during a web socket conversation.
This kind of handler is notified by the implementation as it becomes ready to deliver parts of a whole message.
This kind of handler is notified by the container on arrival of a complete message.
The PongMessage interface represents a web socket pong.
The RemoteEndpoint object is supplied by the container and represents the 'other end' or peer of the Web Socket conversation.
This representation of the peer of a web socket conversation has the ability to send messages asynchronously.
This representation of the peer of a web socket conversation has the ability to send messages synchronously.
A simple callback object for asynchronous sending of web socket messages.
A Web Socket session represents a conversation between two web socket endpoints.
A WebSocketContainer is an implementation provided object that provides applications a view on the container running it.