Uses of Interface
javax.websocket.EndpointConfig
Packages that use EndpointConfig
-
Uses of EndpointConfig in javax.websocket
Subinterfaces of EndpointConfig in javax.websocketModifier and TypeInterfaceDescriptioninterfaceThe ClientEndpointConfig is a special kind of endpoint configuration object that contains web socket configuration information specific only to client endpoints.Classes in javax.websocket that implement EndpointConfigModifier and TypeClassDescription(package private) final classThe DefaultClientEndpointConfig is a concrete implementation of a client configuration.Methods in javax.websocket with parameters of type EndpointConfigModifier and TypeMethodDescriptionvoidDecoder.init(EndpointConfig config) This method is called with the endpoint configuration object of the endpoint this decoder is intended for when it is about to be brought into service.voidEncoder.init(EndpointConfig config) This method is called with the endpoint configuration object of the endpoint this encoder is intended for when it is about to be brought into service.abstract voidEndpoint.onOpen(Session session, EndpointConfig config) Developers must implement this method to be notified when a new conversation has just begun. -
Uses of EndpointConfig in javax.websocket.server
Subinterfaces of EndpointConfig in javax.websocket.serverModifier and TypeInterfaceDescriptioninterfaceThe ServerEndpointConfig is a special kind of endpoint configuration object that contains web socket configuration information specific only to server endpoints.Classes in javax.websocket.server that implement EndpointConfigModifier and TypeClassDescription(package private) final classThe DefaultServerEndpointConfig is a concrete class that embodies all the configuration parameters for an endpoint that is to be published as a server endpoint.