Uses of Interface
javax.websocket.EndpointConfig
-
Packages that use EndpointConfig 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.core Core classes.org.glassfish.tyrus.core.coder Encoder and decoder adapters and built-in implementations. -
-
Uses of EndpointConfig in javax.websocket
Subinterfaces of EndpointConfig in javax.websocket Modifier and Type Interface Description interface
ClientEndpointConfig
The ClientEndpointConfig is a special kind of endpoint configuration object that contains web socket configuration information specific only to client endpoints.Methods in javax.websocket with parameters of type EndpointConfig Modifier and Type Method Description void
Decoder. init(EndpointConfig config)
This method is called with the endpoint configuration object of the endpoint this decoder is intended for when it is about to be brought into service.void
Encoder. init(EndpointConfig config)
This method is called with the endpoint configuration object of the endpoint this encoder is intended for when it is about to be brought into service.abstract void
Endpoint. onOpen(Session session, EndpointConfig config)
Developers must implement this method to be notified when a new conversation has just begun. -
Uses of EndpointConfig in javax.websocket.server
Subinterfaces of EndpointConfig in javax.websocket.server Modifier and Type Interface Description interface
ServerEndpointConfig
The ServerEndpointConfig is a special kind of endpoint configuration object that contains web socket configuration information specific only to server endpoints. -
Uses of EndpointConfig in org.glassfish.tyrus.core
Subinterfaces of EndpointConfig in org.glassfish.tyrus.core Modifier and Type Interface Description interface
TyrusServerEndpointConfig
ConfigurationServerEndpointConfig
enhanced to offer tyrus specific attributes like maxSessions.Methods in org.glassfish.tyrus.core that return EndpointConfig Modifier and Type Method Description EndpointConfig
AnnotatedEndpoint. getEndpointConfig()
EndpointConfig
TyrusEndpointWrapper. getEndpointConfig()
Get Endpoint configuration.Methods in org.glassfish.tyrus.core with parameters of type EndpointConfig Modifier and Type Method Description <T> java.lang.Object
ComponentProviderService. getCoderInstance(java.lang.Class<T> c, Session session, EndpointConfig endpointConfig, ErrorCollector collector)
void
AnnotatedEndpoint. onOpen(Session session, EndpointConfig configuration)
Constructors in org.glassfish.tyrus.core with parameters of type EndpointConfig 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 EndpointConfig in org.glassfish.tyrus.core.coder
Methods in org.glassfish.tyrus.core.coder with parameters of type EndpointConfig Modifier and Type Method Description void
CoderAdapter. init(EndpointConfig config)
This method does nothing.
-