Uses of Interface
javax.websocket.EndpointConfig
| Package | Description |
|---|---|
| javax.websocket |
This package contains all the Jakartq WebSocket APIs common to both the client and server side.
|
| javax.websocket.server |
This package contains all the Jakarta WebSocket APIs used only by server side applications.
|
-
Uses of EndpointConfig in javax.websocket
Subinterfaces of EndpointConfig in javax.websocket Modifier and Type Interface Description interfaceClientEndpointConfigThe ClientEndpointConfig is a special kind of endpoint configuration object that contains web socket configuration information specific only to client endpoints.Methods in javax.websocket with parameters of type EndpointConfig Modifier and Type Method Description voidDecoder. 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.server Modifier and Type Interface Description interfaceServerEndpointConfigThe ServerEndpointConfig is a special kind of endpoint configuration object that contains web socket configuration information specific only to server endpoints.