Uses of Interface
javax.websocket.Extension
Packages that use Extension
Package
Description
This package contains all the WebSocket APIs common to both the client
and server side.
This package contains all the WebSocket APIs used only by server side
applications.
-
Uses of Extension in javax.websocket
Fields in javax.websocket with type parameters of type ExtensionModifier and TypeFieldDescriptionClientEndpointConfig.Builder.extensions
DefaultClientEndpointConfig.extensions
Methods in javax.websocket that return types with arguments of type ExtensionModifier and TypeMethodDescriptionClientEndpointConfig.getExtensions()
Return the extensions, in order of preference, favorite first, that this client would like to use for its sessions.DefaultClientEndpointConfig.getExtensions()
Return the extensions, in order of preference, favorite first, that this client would like to use for its sessions.WebSocketContainer.getInstalledExtensions()
Return the set of Extensions installed in the container.Session.getNegotiatedExtensions()
Return the list of extensions currently in use for this conversation.Method parameters in javax.websocket with type arguments of type ExtensionModifier and TypeMethodDescriptionClientEndpointConfig.Builder.extensions
(List<Extension> extensions) Set the extensions for the configuration this builder will build. -
Uses of Extension in javax.websocket.server
Fields in javax.websocket.server with type parameters of type ExtensionModifier and TypeFieldDescriptionDefaultServerEndpointConfig.extensions
ServerEndpointConfig.Builder.extensions
Methods in javax.websocket.server that return types with arguments of type ExtensionModifier and TypeMethodDescriptionDefaultServerEndpointConfig.getExtensions()
ServerEndpointConfig.getExtensions()
Return the websocket extensions configured.ServerEndpointConfig.Configurator.getNegotiatedExtensions
(List<Extension> installed, List<Extension> requested) Return the ordered list of extensions that t server endpoint will support given the requested extension list passed in, the empty list if none.Method parameters in javax.websocket.server with type arguments of type ExtensionModifier and TypeMethodDescriptionServerEndpointConfig.Builder.extensions
(List<Extension> extensions) Sets the extensions to use in the configuration.ServerEndpointConfig.Configurator.getNegotiatedExtensions
(List<Extension> installed, List<Extension> requested) Return the ordered list of extensions that t server endpoint will support given the requested extension list passed in, the empty list if none.