Uses of Interface
javax.websocket.WebSocketContainer
-
Packages that use WebSocketContainer 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.container.grizzly.client Grizzly Client container.org.glassfish.tyrus.core Core classes.org.glassfish.tyrus.core.cluster Cluster relates classes and interfaces.org.glassfish.tyrus.server Server implementation.org.glassfish.tyrus.spi Tyrus SPI. -
-
Uses of WebSocketContainer in javax.websocket
Methods in javax.websocket that return WebSocketContainer Modifier and Type Method Description protected abstract WebSocketContainer
ContainerProvider. getContainer()
Create a new instance of the the WebSocket container implementation.WebSocketContainer
Session. getContainer()
Return the container that this session is part of.static WebSocketContainer
ContainerProvider. getWebSocketContainer()
Obtain a new instance of a WebSocketContainer. -
Uses of WebSocketContainer in javax.websocket.server
Subinterfaces of WebSocketContainer in javax.websocket.server Modifier and Type Interface Description interface
ServerContainer
The ServerContainer is the specialized view of the WebSocketContainer available in server-side deployments. -
Uses of WebSocketContainer in org.glassfish.tyrus.client
Classes in org.glassfish.tyrus.client that implement WebSocketContainer Modifier and Type Class Description class
ClientManager
ClientManager implementation.Methods in org.glassfish.tyrus.client with parameters of type WebSocketContainer Modifier and Type Method Description static ClientManager
ClientManager. createClient(java.lang.String containerProviderClassName, WebSocketContainer webSocketContainer)
Create new ClientManager instance on top of providedWebSocketContainer
instance.static ClientManager
ClientManager. createClient(WebSocketContainer webSocketContainer)
Create new ClientManager instance on top of providedWebSocketContainer
instance. -
Uses of WebSocketContainer in org.glassfish.tyrus.container.grizzly.client
Methods in org.glassfish.tyrus.container.grizzly.client that return WebSocketContainer Modifier and Type Method Description protected WebSocketContainer
GrizzlyContainerProvider. getContainer()
-
Uses of WebSocketContainer in org.glassfish.tyrus.core
Classes in org.glassfish.tyrus.core that implement WebSocketContainer Modifier and Type Class Description class
BaseContainer
Base WebSocket container.Methods in org.glassfish.tyrus.core that return WebSocketContainer Modifier and Type Method Description WebSocketContainer
TyrusSession. getContainer()
Methods in org.glassfish.tyrus.core with parameters of type WebSocketContainer Modifier and Type Method Description static TyrusWebSocketEngine.TyrusWebSocketEngineBuilder
TyrusWebSocketEngine. builder(WebSocketContainer webSocketContainer)
CreateTyrusWebSocketEngine.TyrusWebSocketEngineBuilder
instance based on passedWebSocketContainer
.Constructors in org.glassfish.tyrus.core with parameters of type WebSocketContainer 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
.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)
-
Uses of WebSocketContainer in org.glassfish.tyrus.core.cluster
Methods in org.glassfish.tyrus.core.cluster that return WebSocketContainer Modifier and Type Method Description WebSocketContainer
RemoteSession. getContainer()
This method is not supported onRemoteSession
. -
Uses of WebSocketContainer in org.glassfish.tyrus.server
Classes in org.glassfish.tyrus.server that implement WebSocketContainer Modifier and Type Class Description class
TyrusServerContainer
Server Container Implementation. -
Uses of WebSocketContainer in org.glassfish.tyrus.spi
Subinterfaces of WebSocketContainer in org.glassfish.tyrus.spi Modifier and Type Interface Description interface
ServerContainer
HTTP server abstraction.
-