Uses of Interface
org.java_websocket.extensions.IExtension
-
Packages that use IExtension Package Description org.java_websocket.drafts This package encapsulates all implementations in relation with the WebSocket drafts.org.java_websocket.extensions This package encapsulates all interfaces and implementations in relation with the WebSocket Sec-WebSocket-Extensions.org.java_websocket.extensions.permessage_deflate -
-
Uses of IExtension in org.java_websocket.drafts
Fields in org.java_websocket.drafts declared as IExtension Modifier and Type Field Description private IExtension
Draft_6455. extension
Attribute for the used extension in this draftFields in org.java_websocket.drafts with type parameters of type IExtension Modifier and Type Field Description private java.util.List<IExtension>
Draft_6455. knownExtensions
Attribute for all available extension in this draftMethods in org.java_websocket.drafts that return IExtension Modifier and Type Method Description IExtension
Draft_6455. getExtension()
Getter for the extension which is used by this draftMethods in org.java_websocket.drafts that return types with arguments of type IExtension Modifier and Type Method Description java.util.List<IExtension>
Draft_6455. getKnownExtensions()
Getter for all available extensions for this draftConstructors in org.java_websocket.drafts with parameters of type IExtension Constructor Description Draft_6455(IExtension inputExtension)
Constructor for the websocket protocol specified by RFC 6455 with custom extensionsConstructor parameters in org.java_websocket.drafts with type arguments of type IExtension Constructor Description Draft_6455(java.util.List<IExtension> inputExtensions)
Constructor for the websocket protocol specified by RFC 6455 with custom extensionsDraft_6455(java.util.List<IExtension> inputExtensions, int inputMaxFrameSize)
Constructor for the websocket protocol specified by RFC 6455 with custom extensions and protocolsDraft_6455(java.util.List<IExtension> inputExtensions, java.util.List<IProtocol> inputProtocols)
Constructor for the websocket protocol specified by RFC 6455 with custom extensions and protocolsDraft_6455(java.util.List<IExtension> inputExtensions, java.util.List<IProtocol> inputProtocols, int inputMaxFrameSize)
Constructor for the websocket protocol specified by RFC 6455 with custom extensions and protocols -
Uses of IExtension in org.java_websocket.extensions
Classes in org.java_websocket.extensions that implement IExtension Modifier and Type Class Description class
CompressionExtension
Implementation for a compression extension specified by https://tools.ietf.org/html/rfc7692class
DefaultExtension
Class which represents the normal websocket implementation specified by rfc6455.Methods in org.java_websocket.extensions that return IExtension Modifier and Type Method Description IExtension
DefaultExtension. copyInstance()
IExtension
IExtension. copyInstance()
Extensions must only be by one websocket at all. -
Uses of IExtension in org.java_websocket.extensions.permessage_deflate
Classes in org.java_websocket.extensions.permessage_deflate that implement IExtension Modifier and Type Class Description class
PerMessageDeflateExtension
PerMessage Deflate Extension (7. The "permessage-deflate" Extension in RFC 7692).Methods in org.java_websocket.extensions.permessage_deflate that return IExtension Modifier and Type Method Description IExtension
PerMessageDeflateExtension. copyInstance()
-