Uses of Class
jakarta.websocket.Endpoint
Packages that use Endpoint
Package
Description
This package contains all the Jakarta WebSocket APIs common to both the client and server side.
This package contains all the Jakarta WebSocket APIs used only by server side applications.
Common Client.
Core classes.
Server implementation.
-
Uses of Endpoint in jakarta.websocket
Methods in jakarta.websocket with parameters of type EndpointModifier and TypeMethodDescriptionWebSocketContainer.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 EndpointModifier and TypeMethodDescriptionWebSocketContainer.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 EndpointModifier and TypeMethodDescriptionServerApplicationConfig.getEndpointConfigs
(Set<Class<? extends Endpoint>> endpointClasses) Return a set of ServerEndpointConfig instances that the server container will use to deploy the programmatic endpoints. -
Uses of Endpoint in org.glassfish.tyrus.client
Methods in org.glassfish.tyrus.client with parameters of type EndpointModifier and TypeMethodDescriptionClientManager.asyncConnectToServer
(Endpoint endpointInstance, ClientEndpointConfig cec, URI path) ClientManager.connectToServer
(Endpoint endpointInstance, ClientEndpointConfig cec, URI path) Method parameters in org.glassfish.tyrus.client with type arguments of type EndpointModifier and TypeMethodDescriptionClientManager.asyncConnectToServer
(Class<? extends Endpoint> endpointClass, ClientEndpointConfig cec, URI path) Non-blocking version ofWebSocketContainer.connectToServer(Class, jakarta.websocket.ClientEndpointConfig, java.net.URI)
.ClientManager.connectToServer
(Class<? extends Endpoint> endpointClass, ClientEndpointConfig cec, URI path) -
Uses of Endpoint in org.glassfish.tyrus.core
Subclasses of Endpoint in org.glassfish.tyrus.coreModifier and TypeClassDescriptionclass
Endpoint
descendant which represents deployed annotated endpoint.Constructors in org.glassfish.tyrus.core with parameters of type EndpointModifierConstructorDescriptionTyrusEndpointWrapper
(Endpoint endpoint, EndpointConfig configuration, ComponentProviderService componentProvider, WebSocketContainer container, String contextPath, ServerEndpointConfig.Configurator configurator, TyrusEndpointWrapper.SessionListener sessionListener, ClusterContext clusterContext, EndpointEventListener endpointEventListener, Boolean parallelBroadcastEnabled) Constructor parameters in org.glassfish.tyrus.core with type arguments of type EndpointModifierConstructorDescriptionTyrusEndpointWrapper
(Class<? extends Endpoint> endpointClass, EndpointConfig configuration, ComponentProviderService componentProvider, WebSocketContainer container, String contextPath, ServerEndpointConfig.Configurator configurator, TyrusEndpointWrapper.SessionListener sessionListener, ClusterContext clusterContext, EndpointEventListener endpointEventListener, Boolean parallelBroadcastEnabled) CreateTyrusEndpointWrapper
for class that extendsEndpoint
. -
Uses of Endpoint in org.glassfish.tyrus.server
Methods in org.glassfish.tyrus.server with parameters of type EndpointModifier and TypeMethodDescriptionTyrusServerContainer.asyncConnectToServer
(Endpoint endpointInstance, ClientEndpointConfig cec, URI path) TyrusServerContainer.connectToServer
(Endpoint endpointInstance, ClientEndpointConfig cec, URI path) Method parameters in org.glassfish.tyrus.server with type arguments of type EndpointModifier and TypeMethodDescriptionTyrusServerContainer.asyncConnectToServer
(Class<? extends Endpoint> endpointClass, ClientEndpointConfig cec, URI path) Non-blocking version ofWebSocketContainer.connectToServer(Class, jakarta.websocket.ClientEndpointConfig, java.net.URI)
.TyrusServerContainer.connectToServer
(Class<? extends Endpoint> endpointClass, ClientEndpointConfig cec, URI path) TyrusServerConfiguration.getEndpointConfigs
(Set<Class<? extends Endpoint>> scanned) Gets all theServerEndpointConfig
classes which should be deployed.