Uses of Package
javax.websocket

Packages that use javax.websocket
javax.websocket   
javax.websocket.server   
 

Classes in javax.websocket used by javax.websocket
ClientEndpointConfiguration
          The ClientEndpointConfiguration is a special kind of endpoint configuration object that contains web socket configuration information specific only to client endpoints.
CloseReason
          A class encapsulating the reason why a web socket has been closed, or why it is being asked to close.
CloseReason.CloseCode
          A marker interface for the close codes.
CloseReason.CloseCodes
          An Enumeration of status codes for a web socket close that are defined in the specification.
DecodeException
          A general exception that occurs when trying to decode a custom object from a text or binary message.
Decoder
          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.
DefaultClientConfiguration
          The DefaultClientConfiguration is a concrete implementation of a client configuration.
DeploymentException
          Checked exception indicating some kind of failure either to publish an endpoint on its server, or a failure to connect a client to its server.
EncodeException
          A general exception that occurs when trying to encode a custom object to a string or binary message.
Encoder
          The Encoder interface defines how developers can provide a way to convert their custom objects into web socket messages.
Endpoint
          The Web Socket Endpoint represents an object that can handle a web socket conversations.
EndpointConfiguration
          The endpoint configuration contains all the information needed during the handshake process for this end point.
Extension
          A simple representation of a websocket extension as a name and map of extension parameters.
Extension.Parameter
          This member interface defines a single websocket extension parameter.
HandshakeResponse
          The handshake response represents the web socket-defined Http response that is the response to the opening handshake request.
MessageHandler
          Developers implement MessageHandlers in order to receive incoming messages during a web socket conversation.
RemoteEndpoint
          The RemoteEndpoint object is supplied by the container and represents the 'other end' of the Web Socket conversation.
SendHandler
          A simple callback object for asynchronous sending of web socket messages.
SendResult
          The result of asynchronously sending a web socket message.
Session
          A Web Socket session represents a conversation between two web socket endpoints.
WebSocketContainer
          A WebSocketContainer is an implementation provided object that allows the developer to initiate a web socket handshake from the provided endpoint.
 

Classes in javax.websocket used by javax.websocket.server
Decoder
          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.
Encoder
          The Encoder interface defines how developers can provide a way to convert their custom objects into web socket messages.
Endpoint
          The Web Socket Endpoint represents an object that can handle a web socket conversations.
EndpointConfiguration
          The endpoint configuration contains all the information needed during the handshake process for this end point.
Extension
          A simple representation of a websocket extension as a name and map of extension parameters.
HandshakeResponse
          The handshake response represents the web socket-defined Http response that is the response to the opening handshake request.
 




Copyright © 2012-2013 Oracle and/or its affiliates. All rights reserved.