Package | Description |
---|---|
org.eclipse.jetty.websocket.api |
Jetty WebSocket API
|
org.eclipse.jetty.websocket.api.extensions |
Jetty WebSocket API : WebSocket Extension API
|
org.eclipse.jetty.websocket.client |
Jetty WebSocket Client API
|
org.eclipse.jetty.websocket.common.extensions |
Jetty WebSocket Common : Extension Implementations
|
org.eclipse.jetty.websocket.common.extensions.compress |
Jetty WebSocket Common : Frame & Message Compression Extension Implementations
|
org.eclipse.jetty.websocket.common.extensions.fragment |
Jetty WebSocket Common : Auto Fragment Extension Implementation
|
org.eclipse.jetty.websocket.common.extensions.identity |
Jetty WebSocket Common : Identity Extension Implementation
|
org.eclipse.jetty.websocket.common.io |
Jetty WebSocket Common : I/O Implementation
|
org.eclipse.jetty.websocket.jsr356 | |
org.eclipse.jetty.websocket.servlet |
Jetty WebSocket Servlet API
|
Modifier and Type | Method and Description |
---|---|
List<ExtensionConfig> |
UpgradeResponse.getExtensions()
Get the list of extensions that should be used for the websocket.
|
List<ExtensionConfig> |
UpgradeRequest.getExtensions() |
Modifier and Type | Method and Description |
---|---|
void |
UpgradeRequest.addExtensions(ExtensionConfig... configs) |
Modifier and Type | Method and Description |
---|---|
void |
UpgradeResponse.setExtensions(List<ExtensionConfig> extensions)
Set the list of extensions that are approved for use with this websocket.
|
void |
UpgradeRequest.setExtensions(List<ExtensionConfig> configs) |
Modifier and Type | Method and Description |
---|---|
ExtensionConfig |
Extension.getConfig()
The active configuration for this extension.
|
static ExtensionConfig |
ExtensionConfig.parse(String parameterizedName)
Parse a single parameterized name.
|
Modifier and Type | Method and Description |
---|---|
static List<ExtensionConfig> |
ExtensionConfig.parseEnum(Enumeration<String> valuesEnum)
Parse enumeration of
Sec-WebSocket-Extensions header values into a ExtensionConfig list |
static List<ExtensionConfig> |
ExtensionConfig.parseList(String... rawSecWebSocketExtensions)
Parse 1 or more raw
Sec-WebSocket-Extensions header values into a ExtensionConfig list |
Modifier and Type | Method and Description |
---|---|
void |
ExtensionConfig.init(ExtensionConfig other)
Initialize the parameters on this config from the other configuration.
|
abstract Extension |
ExtensionFactory.newInstance(ExtensionConfig config) |
Modifier and Type | Method and Description |
---|---|
static String |
ExtensionConfig.toHeaderValue(List<ExtensionConfig> configs)
Convert a list of
ExtensionConfig to a header value |
Constructor and Description |
---|
ExtensionConfig(ExtensionConfig copy)
Copy constructor
|
Modifier and Type | Method and Description |
---|---|
List<Extension> |
WebSocketClient.initExtensions(List<ExtensionConfig> requested) |
Modifier and Type | Method and Description |
---|---|
ExtensionConfig |
AbstractExtension.getConfig() |
Modifier and Type | Method and Description |
---|---|
List<ExtensionConfig> |
ExtensionStack.getNegotiatedExtensions()
Get the list of negotiated extensions, each entry being a full "name; params" extension configuration
|
Modifier and Type | Method and Description |
---|---|
Extension |
WebSocketExtensionFactory.newInstance(ExtensionConfig config) |
void |
FrameDebugExtension.setConfig(ExtensionConfig config) |
void |
AbstractExtension.setConfig(ExtensionConfig config) |
Modifier and Type | Method and Description |
---|---|
void |
ExtensionStack.negotiate(List<ExtensionConfig> configs)
Perform the extension negotiation.
|
Modifier and Type | Method and Description |
---|---|
void |
PerMessageDeflateExtension.setConfig(ExtensionConfig config) |
Modifier and Type | Method and Description |
---|---|
void |
FragmentExtension.setConfig(ExtensionConfig config) |
Modifier and Type | Method and Description |
---|---|
void |
IdentityExtension.setConfig(ExtensionConfig config) |
Modifier and Type | Method and Description |
---|---|
List<ExtensionConfig> |
AbstractWebSocketConnection.getExtensions()
Get the list of extensions in use.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractWebSocketConnection.setExtensions(List<ExtensionConfig> extensions)
Get the list of extensions in use.
|
Modifier and Type | Class and Description |
---|---|
class |
JsrExtensionConfig |
Constructor and Description |
---|
JsrExtension(ExtensionConfig cfg)
A configured extension
|
Modifier and Type | Method and Description |
---|---|
void |
ServletUpgradeResponse.setExtensions(List<ExtensionConfig> extensions) |
Copyright © 1995-2015 Webtide. All Rights Reserved.