|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Extension | |
|---|---|
| javax.websocket | |
| javax.websocket.server | |
| Uses of Extension in javax.websocket |
|---|
| Methods in javax.websocket that return types with arguments of type Extension | |
|---|---|
List<Extension> |
DefaultClientConfiguration.getExtensions()
Return the extensions, in order of preference, favorite first, that this client would like to use for its sessions. |
List<Extension> |
ClientEndpointConfiguration.getExtensions()
Return the list of all the extensions that this client supports, the empty list if there are none. |
Set<Extension> |
WebSocketContainer.getInstalledExtensions()
Return the set of Extensions installed in the container. |
List<Extension> |
Session.getNegotiatedExtensions()
Return the list of extensions currently in use for this conversation. |
| Method parameters in javax.websocket with type arguments of type Extension | |
|---|---|
DefaultClientConfiguration |
DefaultClientConfiguration.setExtensions(List<Extension> extensions)
Assign the List of preferred extensions that this client would like to use. |
| Uses of Extension in javax.websocket.server |
|---|
| Methods in javax.websocket.server that return types with arguments of type Extension | |
|---|---|
List<Extension> |
ServerEndpointConfiguration.getNegotiatedExtensions(List<Extension> requestedExtensions)
Return the ordered list of extensions that this server will support given the requested extension list passed in, the empty list if none. |
List<Extension> |
DefaultServerConfiguration.getNegotiatedExtensions(List<Extension> requestedExtensions)
Provides a simple algorithm to return the list of extensions this server will use for the web socket session: the configuration returns a list containing all of the requested extensions passed to this method that it supports, using the order in the requested extensions, the empty list if none. |
| Method parameters in javax.websocket.server with type arguments of type Extension | |
|---|---|
List<Extension> |
ServerEndpointConfiguration.getNegotiatedExtensions(List<Extension> requestedExtensions)
Return the ordered list of extensions that this server will support given the requested extension list passed in, the empty list if none. |
List<Extension> |
DefaultServerConfiguration.getNegotiatedExtensions(List<Extension> requestedExtensions)
Provides a simple algorithm to return the list of extensions this server will use for the web socket session: the configuration returns a list containing all of the requested extensions passed to this method that it supports, using the order in the requested extensions, the empty list if none. |
DefaultServerConfiguration |
DefaultServerConfiguration.setExtensions(List<Extension> extensions)
Sets all the extensions that this configuration will support. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||