Uses of Interface
jakarta.websocket.EndpointConfig
Packages that use EndpointConfig
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.
Core classes.
Encoder and decoder adapters and built-in implementations.
- 
Uses of EndpointConfig in jakarta.websocket
Subinterfaces of EndpointConfig in jakarta.websocketModifier and TypeInterfaceDescriptioninterfaceThe ClientEndpointConfig is a special kind of endpoint configuration object that contains web socket configuration information specific only to client endpoints.Methods in jakarta.websocket with parameters of type EndpointConfigModifier and TypeMethodDescriptiondefault voidDecoder.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.default voidEncoder.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 voidEndpoint.onOpen(Session session, EndpointConfig config) Developers must implement this method to be notified when a new conversation has just begun. - 
Uses of EndpointConfig in jakarta.websocket.server
Subinterfaces of EndpointConfig in jakarta.websocket.serverModifier and TypeInterfaceDescriptioninterfaceThe 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.coreModifier and TypeInterfaceDescriptioninterfaceConfigurationServerEndpointConfigenhanced to offer tyrus specific attributes like maxSessions.Classes in org.glassfish.tyrus.core that implement EndpointConfigModifier and TypeClassDescriptionclassA public class that holds a wrapped ServerEndpointConfig.Methods in org.glassfish.tyrus.core that return EndpointConfigModifier and TypeMethodDescriptionAnnotatedEndpoint.getEndpointConfig()TyrusEndpointWrapper.getEndpointConfig()Get Endpoint configuration.Methods in org.glassfish.tyrus.core with parameters of type EndpointConfigModifier and TypeMethodDescription<T> ObjectComponentProviderService.getCoderInstance(Class<T> c, Session session, EndpointConfig endpointConfig, ErrorCollector collector) voidAnnotatedEndpoint.onOpen(Session session, EndpointConfig configuration) Constructors in org.glassfish.tyrus.core with parameters of type EndpointConfigModifierConstructorDescriptionTyrusEndpointWrapper(Endpoint endpoint, EndpointConfig configuration, ComponentProviderService componentProvider, WebSocketContainer container, String contextPath, ServerEndpointConfig.Configurator configurator, TyrusEndpointWrapper.SessionListener sessionListener, ClusterContext clusterContext, EndpointEventListener endpointEventListener, Boolean parallelBroadcastEnabled) TyrusEndpointWrapper(Class<? extends Endpoint> endpointClass, EndpointConfig configuration, ComponentProviderService componentProvider, WebSocketContainer container, String contextPath, ServerEndpointConfig.Configurator configurator, TyrusEndpointWrapper.SessionListener sessionListener, ClusterContext clusterContext, EndpointEventListener endpointEventListener, Boolean parallelBroadcastEnabled) CreateTyrusEndpointWrapperfor class that extendsEndpoint. - 
Uses of EndpointConfig in org.glassfish.tyrus.core.coder
Methods in org.glassfish.tyrus.core.coder with parameters of type EndpointConfigModifier and TypeMethodDescriptionvoidCoderAdapter.init(EndpointConfig config) This method does nothing.