Uses of Class
javax.websocket.Endpoint
-
Packages that use Endpoint Package Description javax.websocket This package contains all the WebSocket APIs common to both the client and server side.javax.websocket.server This package contains all the WebSocket APIs used only by server side applications.org.glassfish.tyrus.client Common Client.org.glassfish.tyrus.core Core classes.org.glassfish.tyrus.server Server implementation. -
-
Uses of Endpoint in javax.websocket
Methods in javax.websocket with parameters of type Endpoint Modifier and Type Method Description Session
WebSocketContainer. 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 javax.websocket with type arguments of type Endpoint Modifier and Type Method Description Session
WebSocketContainer. 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 javax.websocket.server
Method parameters in javax.websocket.server with type arguments of type Endpoint Modifier and Type Method Description java.util.Set<ServerEndpointConfig>
ServerApplicationConfig. getEndpointConfigs(java.util.Set<java.lang.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 Endpoint Modifier and Type Method Description java.util.concurrent.Future<Session>
ClientManager. asyncConnectToServer(Endpoint endpointInstance, ClientEndpointConfig cec, java.net.URI path)
Session
ClientManager. 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, javax.websocket.ClientEndpointConfig, java.net.URI)
.Session
ClientManager. 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 class
AnnotatedEndpoint
Endpoint
descendant 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, 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, ServerEndpointConfig.Configurator configurator, TyrusEndpointWrapper.SessionListener sessionListener, ClusterContext clusterContext, EndpointEventListener endpointEventListener, java.lang.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 Endpoint Modifier and Type Method Description java.util.concurrent.Future<Session>
TyrusServerContainer. asyncConnectToServer(Endpoint endpointInstance, ClientEndpointConfig cec, java.net.URI path)
Session
TyrusServerContainer. connectToServer(Endpoint endpointInstance, ClientEndpointConfig cec, java.net.URI path)
Method parameters in org.glassfish.tyrus.server with type arguments of type Endpoint Modifier and Type Method Description java.util.concurrent.Future<Session>
TyrusServerContainer. asyncConnectToServer(java.lang.Class<? extends Endpoint> endpointClass, ClientEndpointConfig cec, java.net.URI path)
Non-blocking version ofWebSocketContainer.connectToServer(Class, javax.websocket.ClientEndpointConfig, java.net.URI)
.Session
TyrusServerContainer. connectToServer(java.lang.Class<? extends Endpoint> endpointClass, ClientEndpointConfig cec, java.net.URI path)
java.util.Set<ServerEndpointConfig>
TyrusServerConfiguration. getEndpointConfigs(java.util.Set<java.lang.Class<? extends Endpoint>> scanned)
Gets all theServerEndpointConfig
classes which should be deployed.
-