Search Java Classes and Packages

Search Java Frameworks and Libraries

255581 classes and counting ...
Search Tips Index Status



#Javax.websocket Classes and Interfaces - 50 results found.
NameDescriptionTypePackageFramework
ClientEndpointThe ClientEndpoint annotation a class level annotation is used to denote that a POJO is a web socket client and can be deployed as such.Classjavax.websocketJava EE
ClientEndpointConfigThe ClientEndpointConfig is a special kind of endpoint configuration object that contains web socket configuration information specific only to client endpoints.Interfacejavax.websocketJava EE
ClientEndpointConfig .BuilderThe ClientEndpointConfig.Classjavax.websocket.ClientEndpointConfigJava EE
ClientEndpointConfig .ConfiguratorThe Configurator class may be extended by developers who want to provide custom configuration algorithms, such as intercepting the opening handshake, orClassjavax.websocket.ClientEndpointConfigJava EE
CloseReasonA class encapsulating the reason why a web socket has been closed, or why it is being asked to close.Classjavax.websocketJava EE
CloseReason .CloseCodeA marker interface for the close codes.Interfacejavax.websocket.CloseReasonJava EE
CloseReason .CloseCodesAn Enumeration of status codes for a web socket close that are defined in the specification.Classjavax.websocket.CloseReasonJava EE
ContainerProviderProvider class that allows the developer to get a reference to the implementation of the WebSocketContainer.Classjavax.websocketJava EE
DecodeExceptionA general exception that occurs when trying to decode a custom object from a text or binary message.Classjavax.websocketJava EE
DecoderThe 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.Interfacejavax.websocketJava EE
Decoder .BinaryThis interface defines how a custom object (of type T) is decoded from a web socket message in the form of a byte buffer.Interfacejavax.websocket.DecoderJava EE
Decoder .BinaryStreamThis interface defines how a custom object is decoded from a web socket message in the form of a binary stream.Interfacejavax.websocket.DecoderJava EE
Decoder .TextThis interface defines how a custom object is decoded from a web socket message in the form of a string.Interfacejavax.websocket.DecoderJava EE
Decoder .TextStreamThis interface defines how a custom object of type T is decoded from a web socket message in the form of a character stream.Interfacejavax.websocket.DecoderJava EE
DeploymentExceptionChecked exception indicating some kind of failure either to publish an endpoint on its server, or a failure to connect a client to its server.Classjavax.websocketJava EE
EncodeExceptionA general exception that occurs when trying to encode a custom object to a string or binary message.Classjavax.websocketJava EE
EncoderThe Encoder interface defines how developers can provide a way to convert their custom objects into web socket messages.Interfacejavax.websocketJava EE
Encoder .BinaryThis interface defines how to provide a way to convert a custom object into a binary message.Interfacejavax.websocket.EncoderJava EE
Encoder .BinaryStreamThis interface may be implemented by encoding algorithms that want to write the encoded object to a binary stream.Interfacejavax.websocket.EncoderJava EE
Encoder .TextThis interface defines how to provide a way to convert a custom object into a text message.Interfacejavax.websocket.EncoderJava EE
Encoder .TextStreamThis interface may be implemented by encoding algorithms that want to write the encoded object to a character stream.Interfacejavax.websocket.EncoderJava EE
EndpointThe Web Socket Endpoint represents an object that can handle websocket conversations.Classjavax.websocketJava EE
EndpointConfigThe endpoint configuration contains all the information needed during the handshake process for this end point.Interfacejavax.websocketJava EE
ExtensionA simple representation of a websocket extension as a name and map of extension parameters.Interfacejavax.websocketJava EE
Extension .ParameterThis member interface defines a single websocket extension parameter.Interfacejavax.websocket.ExtensionJava EE
HandshakeRequestThe handshake request represents the web socket defined Http GET request for the opening handshake of a web socket session.Interfacejavax.websocket.serverJava EE
HandshakeResponseThe handshake response represents the web socket-defined Http response that is the response to the opening handshake request.Interfacejavax.websocketJava EE
MessageHandlerDevelopers implement MessageHandlers in order to receive incoming messages during a web socket conversation.Interfacejavax.websocketJava EE
MessageHandler .PartialThis kind of handler is notified by the implementation as it becomes ready to deliver parts of a whole message.Interfacejavax.websocket.MessageHandlerJava EE
MessageHandler .WholeThis kind of handler is notified by the container on arrival of a complete message.Interfacejavax.websocket.MessageHandlerJava EE
OnCloseThis method level annotation can be used to decorate a Java method that wishes to be called when a web socket session is closing.Classjavax.websocketJava EE
OnErrorThis method level annotation can be used to decorate a Java method that wishes to be called in order to handle errors.Classjavax.websocketJava EE
OnMessageThis method level annotation can be used to make a Java method receive incoming web socket messages.Classjavax.websocketJava EE
OnOpenThis method level annotation can be used to decorate a Java method that wishes to be called when a new web socket session is open.Classjavax.websocketJava EE
PathParamThis annotation may be used to annotate method parameters on server endpoints where a URI-template has been used in the path-mapping of the ServerEndpointClassjavax.websocket.serverJava EE
PongMessageThe PongMessage interface represents a web socket pong.Interfacejavax.websocketJava EE
RemoteEndpointThe RemoteEndpoint object is supplied by the container and represents the 'other end' or peer of the Web Socket conversation.Interfacejavax.websocketJava EE
RemoteEndpoint .AsyncThis representation of the peer of a web socket conversation has the ability to send messages asynchronously.Interfacejavax.websocket.RemoteEndpointJava EE
RemoteEndpoint .BasicThis representation of the peer of a web socket conversation has the ability to send messages synchronously.Interfacejavax.websocket.RemoteEndpointJava EE
SendHandlerA simple callback object for asynchronous sending of web socket messages.Interfacejavax.websocketJava EE
SendResultThe result of asynchronously sending a web socket message.Classjavax.websocketJava EE
ServerApplicationConfigDevelopers include implementations of ServerApplicationConfig in an archive containing websocket endpoints (WAR file, or JAR file within the WAR file) in order to specify the websocket Interfacejavax.websocket.serverJava EE
ServerContainerThe ServerContainer is the specialized view of the WebSocketContainer available in server-side deployments.Interfacejavax.websocket.serverJava EE
ServerEndpointThis class level annotation declares that the class it decorates is a web socket endpoint that will be deployed and made available in the URI-spaceClassjavax.websocket.serverJava EE
ServerEndpointConfigThe ServerEndpointConfig is a special kind of endpoint configuration object that contains web socket configuration information specific only to server endpoints.Interfacejavax.websocket.serverJava EE
ServerEndpointConfig .BuilderThe ServerEndpointConfig.Classjavax.websocket.server.ServerEndpointConfigJava EE
ServerEndpointConfig .ConfiguratorThe ServerEndpointConfig.Classjavax.websocket.server.ServerEndpointConfigJava EE
SessionA Web Socket session represents a conversation between two web socket endpoints.Interfacejavax.websocketJava EE
SessionExceptionA SessionException represents a general exception type reporting problems occurring on a websocket session.Classjavax.websocketJava EE
WebSocketContainerA WebSocketContainer is an implementation provided object that provides applications a view on the container running it.Interfacejavax.websocketJava EE