Uses of Interface
io.undertow.websockets.extensions.ExtensionFunction
-
-
Uses of ExtensionFunction in io.undertow.websockets.core
Fields in io.undertow.websockets.core declared as ExtensionFunction Modifier and Type Field Description protected ExtensionFunction
WebSocketChannel. extensionFunction
Methods in io.undertow.websockets.core that return ExtensionFunction Modifier and Type Method Description ExtensionFunction
WebSocketChannel. getExtensionFunction()
Constructors in io.undertow.websockets.core with parameters of type ExtensionFunction Constructor Description WebSocketChannel(org.xnio.StreamConnection connectedStreamChannel, ByteBufferPool bufferPool, WebSocketVersion version, java.lang.String wsUrl, java.lang.String subProtocol, boolean client, boolean extensionsSupported, ExtensionFunction extensionFunction, java.util.Set<WebSocketChannel> peerConnections, org.xnio.OptionMap options)
Create a newWebSocketChannel
8 -
Uses of ExtensionFunction in io.undertow.websockets.core.protocol
Methods in io.undertow.websockets.core.protocol that return types with arguments of type ExtensionFunction Modifier and Type Method Description protected java.util.List<ExtensionFunction>
Handshake. initExtensions(WebSocketHttpExchange exchange)
Create theExtensionFunction
list associated with the negotiated extensions defined in the exchange's response. -
Uses of ExtensionFunction in io.undertow.websockets.core.protocol.version07
Fields in io.undertow.websockets.core.protocol.version07 declared as ExtensionFunction Modifier and Type Field Description protected ExtensionFunction
WebSocket07FrameSinkChannel. extensionFunction
Constructors in io.undertow.websockets.core.protocol.version07 with parameters of type ExtensionFunction Constructor Description WebSocket07Channel(org.xnio.StreamConnection channel, ByteBufferPool bufferPool, java.lang.String wsUrl, java.lang.String subProtocol, boolean client, boolean allowExtensions, ExtensionFunction extensionFunction, java.util.Set<WebSocketChannel> openConnections, org.xnio.OptionMap options)
Create a newWebSocket07Channel
-
Uses of ExtensionFunction in io.undertow.websockets.core.protocol.version08
Constructors in io.undertow.websockets.core.protocol.version08 with parameters of type ExtensionFunction Constructor Description WebSocket08Channel(org.xnio.StreamConnection channel, ByteBufferPool bufferPool, java.lang.String wsUrl, java.lang.String subProtocols, boolean client, boolean allowExtensions, ExtensionFunction extensionFunction, java.util.Set<WebSocketChannel> openConnections, org.xnio.OptionMap options)
-
Uses of ExtensionFunction in io.undertow.websockets.core.protocol.version13
Constructors in io.undertow.websockets.core.protocol.version13 with parameters of type ExtensionFunction Constructor Description WebSocket13Channel(org.xnio.StreamConnection channel, ByteBufferPool bufferPool, java.lang.String wsUrl, java.lang.String subProtocols, boolean client, boolean allowExtensions, ExtensionFunction extensionFunction, java.util.Set<WebSocketChannel> openConnections, org.xnio.OptionMap options)
-
Uses of ExtensionFunction in io.undertow.websockets.extensions
Classes in io.undertow.websockets.extensions that implement ExtensionFunction Modifier and Type Class Description class
CompositeExtensionFunction
class
NoopExtensionFunction
class
PerMessageDeflateFunction
Implementation ofpermessage-deflate
WebSocket Extension.Fields in io.undertow.websockets.extensions declared as ExtensionFunction Modifier and Type Field Description static ExtensionFunction
NoopExtensionFunction. INSTANCE
Methods in io.undertow.websockets.extensions that return ExtensionFunction Modifier and Type Method Description static ExtensionFunction
CompositeExtensionFunction. compose(ExtensionFunction... functions)
static ExtensionFunction
CompositeExtensionFunction. compose(java.util.List<ExtensionFunction> functions)
ExtensionFunction
ExtensionHandshake. create()
Create a new instance of theExtensionFunction
associated to this WebSocket Extension.ExtensionFunction
PerMessageDeflateHandshake. create()
Methods in io.undertow.websockets.extensions with parameters of type ExtensionFunction Modifier and Type Method Description static ExtensionFunction
CompositeExtensionFunction. compose(ExtensionFunction... functions)
Method parameters in io.undertow.websockets.extensions with type arguments of type ExtensionFunction Modifier and Type Method Description static ExtensionFunction
CompositeExtensionFunction. compose(java.util.List<ExtensionFunction> functions)
-