Uses of Class
jakarta.websocket.Endpoint
-
Packages that use Endpoint Package Description jakarta.websocket This package contains all the Jakarta WebSocket APIs common to both the client and server side.jakarta.websocket.server This package contains all the Jakarta WebSocket APIs used only by server side applications. -
-
Uses of Endpoint in jakarta.websocket
Methods in jakarta.websocket with parameters of type Endpoint Modifier and Type Method Description Session
WebSocketContainer. connectToServer(Endpoint endpointInstance, ClientEndpointConfig cec, URI path)
Connect the supplied programmatic client endpoint instance to its server with the given configuration.Method parameters in jakarta.websocket with type arguments of type Endpoint Modifier and Type Method Description Session
WebSocketContainer. connectToServer(Class<? extends Endpoint> endpointClass, ClientEndpointConfig cec, URI path)
Connect the supplied programmatic endpoint to its server with the given configuration. -
Uses of Endpoint in jakarta.websocket.server
Method parameters in jakarta.websocket.server with type arguments of type Endpoint Modifier and Type Method Description Set<ServerEndpointConfig>
ServerApplicationConfig. getEndpointConfigs(Set<Class<? extends Endpoint>> endpointClasses)
Return a set of ServerEndpointConfig instances that the server container will use to deploy the programmatic endpoints.
-