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.org.glassfish.tyrus.client Common Client.org.glassfish.tyrus.core Core classes. -
-
Uses of Endpoint in jakarta.websocket
Methods in jakarta.websocket with parameters of type Endpoint Modifier and Type Method Description SessionWebSocketContainer. connectToServer(Endpoint endpointInstance, ClientEndpointConfig cec, java.net.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 SessionWebSocketContainer. connectToServer(java.lang.Class<? extends Endpoint> endpointClass, ClientEndpointConfig cec, java.net.URI path)Connect the supplied programmatic endpoint to its server with the given configuration. -
Uses of Endpoint in org.glassfish.tyrus.client
Methods in org.glassfish.tyrus.client with parameters of type Endpoint Modifier and Type Method Description java.util.concurrent.Future<Session>ClientManager. asyncConnectToServer(Endpoint endpointInstance, ClientEndpointConfig cec, java.net.URI path)SessionClientManager. connectToServer(Endpoint endpointInstance, ClientEndpointConfig cec, java.net.URI path)Method parameters in org.glassfish.tyrus.client with type arguments of type Endpoint Modifier and Type Method Description java.util.concurrent.Future<Session>ClientManager. asyncConnectToServer(java.lang.Class<? extends Endpoint> endpointClass, ClientEndpointConfig cec, java.net.URI path)Non-blocking version ofWebSocketContainer.connectToServer(Class, jakarta.websocket.ClientEndpointConfig, java.net.URI).SessionClientManager. connectToServer(java.lang.Class<? extends Endpoint> endpointClass, ClientEndpointConfig cec, java.net.URI path) -
Uses of Endpoint in org.glassfish.tyrus.core
Subclasses of Endpoint in org.glassfish.tyrus.core Modifier and Type Class Description classAnnotatedEndpointEndpointdescendant which represents deployed annotated endpoint.Constructors in org.glassfish.tyrus.core with parameters of type Endpoint Constructor Description TyrusEndpointWrapper(Endpoint endpoint, EndpointConfig configuration, ComponentProviderService componentProvider, WebSocketContainer container, java.lang.String contextPath, jakarta.websocket.server.ServerEndpointConfig.Configurator configurator, TyrusEndpointWrapper.SessionListener sessionListener, ClusterContext clusterContext, EndpointEventListener endpointEventListener, java.lang.Boolean parallelBroadcastEnabled)Constructor parameters in org.glassfish.tyrus.core with type arguments of type Endpoint Constructor Description TyrusEndpointWrapper(java.lang.Class<? extends Endpoint> endpointClass, EndpointConfig configuration, ComponentProviderService componentProvider, WebSocketContainer container, java.lang.String contextPath, jakarta.websocket.server.ServerEndpointConfig.Configurator configurator, TyrusEndpointWrapper.SessionListener sessionListener, ClusterContext clusterContext, EndpointEventListener endpointEventListener, java.lang.Boolean parallelBroadcastEnabled)CreateTyrusEndpointWrapperfor class that extendsEndpoint.
-