Uses of Interface
org.eclipse.jetty.websocket.api.extensions.OutgoingFrames
-
Packages that use OutgoingFrames Package Description org.eclipse.jetty.websocket.api.extensions Jetty WebSocket API : WebSocket Extension APIorg.eclipse.jetty.websocket.client.io Jetty WebSocket Client : I/O Implementation [Internal Use Only]org.eclipse.jetty.websocket.common Jetty WebSocket Common : Implementation [Internal Use Only]org.eclipse.jetty.websocket.common.extensions Jetty WebSocket Common : Extension Implementationsorg.eclipse.jetty.websocket.common.extensions.compress Jetty WebSocket Common : Message Compression Extension Implementationsorg.eclipse.jetty.websocket.common.extensions.fragment Jetty WebSocket Common : Auto Fragment Extension Implementationorg.eclipse.jetty.websocket.common.extensions.identity Jetty WebSocket Common : Identity Extension Implementationorg.eclipse.jetty.websocket.common.io Jetty WebSocket Common : I/O Implementationorg.eclipse.jetty.websocket.common.message Jetty WebSocket Common : Message Handlingorg.eclipse.jetty.websocket.jsr356 org.eclipse.jetty.websocket.server Jetty WebSocket Server : Implementation [Internal Use Only] -
-
Uses of OutgoingFrames in org.eclipse.jetty.websocket.api.extensions
Subinterfaces of OutgoingFrames in org.eclipse.jetty.websocket.api.extensions Modifier and Type Interface Description interface
Extension
Interface for WebSocket Extensions.Methods in org.eclipse.jetty.websocket.api.extensions with parameters of type OutgoingFrames Modifier and Type Method Description void
Extension. setNextOutgoingFrames(OutgoingFrames nextOutgoing)
Set the nextOutgoingFrames
to call in the chain. -
Uses of OutgoingFrames in org.eclipse.jetty.websocket.client.io
Classes in org.eclipse.jetty.websocket.client.io that implement OutgoingFrames Modifier and Type Class Description class
WebSocketClientConnection
Client side WebSocket physical connection. -
Uses of OutgoingFrames in org.eclipse.jetty.websocket.common
Subinterfaces of OutgoingFrames in org.eclipse.jetty.websocket.common Modifier and Type Interface Description interface
LogicalConnection
Classes in org.eclipse.jetty.websocket.common that implement OutgoingFrames Modifier and Type Class Description class
WebSocketSession
Methods in org.eclipse.jetty.websocket.common that return OutgoingFrames Modifier and Type Method Description OutgoingFrames
WebSocketSession. getOutgoingHandler()
Methods in org.eclipse.jetty.websocket.common with parameters of type OutgoingFrames Modifier and Type Method Description RemoteEndpoint
RemoteEndpointFactory. newRemoteEndpoint(LogicalConnection connection, OutgoingFrames outgoingFrames, BatchMode batchMode)
WebSocketRemoteEndpoint
WebSocketSession. newRemoteEndpoint(LogicalConnection connection, OutgoingFrames outgoingFrames, BatchMode batchMode)
void
WebSocketSession. setOutgoingHandler(OutgoingFrames outgoing)
Constructors in org.eclipse.jetty.websocket.common with parameters of type OutgoingFrames Constructor Description WebSocketRemoteEndpoint(LogicalConnection connection, OutgoingFrames outgoing)
WebSocketRemoteEndpoint(LogicalConnection connection, OutgoingFrames outgoing, BatchMode batchMode)
-
Uses of OutgoingFrames in org.eclipse.jetty.websocket.common.extensions
Classes in org.eclipse.jetty.websocket.common.extensions that implement OutgoingFrames Modifier and Type Class Description class
AbstractExtension
class
ExtensionStack
Represents the stack of Extensions.class
FrameCaptureExtension
Methods in org.eclipse.jetty.websocket.common.extensions that return OutgoingFrames Modifier and Type Method Description OutgoingFrames
AbstractExtension. getNextOutgoing()
OutgoingFrames
ExtensionStack. getNextOutgoing()
Methods in org.eclipse.jetty.websocket.common.extensions with parameters of type OutgoingFrames Modifier and Type Method Description void
ExtensionStack. setNextOutgoing(OutgoingFrames nextOutgoing)
void
AbstractExtension. setNextOutgoingFrames(OutgoingFrames nextOutgoing)
-
Uses of OutgoingFrames in org.eclipse.jetty.websocket.common.extensions.compress
Classes in org.eclipse.jetty.websocket.common.extensions.compress that implement OutgoingFrames Modifier and Type Class Description class
CompressExtension
class
DeflateFrameExtension
Implementation of the deflate-frame extension seen out in the wild.class
PerMessageDeflateExtension
Per Message Deflate Compression extension for WebSocket.class
XWebkitDeflateFrameExtension
Implementation of the x-webkit-deflate-frame extension seen out in the wild. -
Uses of OutgoingFrames in org.eclipse.jetty.websocket.common.extensions.fragment
Classes in org.eclipse.jetty.websocket.common.extensions.fragment that implement OutgoingFrames Modifier and Type Class Description class
FragmentExtension
Fragment Extension -
Uses of OutgoingFrames in org.eclipse.jetty.websocket.common.extensions.identity
Classes in org.eclipse.jetty.websocket.common.extensions.identity that implement OutgoingFrames Modifier and Type Class Description class
IdentityExtension
-
Uses of OutgoingFrames in org.eclipse.jetty.websocket.common.io
Classes in org.eclipse.jetty.websocket.common.io that implement OutgoingFrames Modifier and Type Class Description class
AbstractWebSocketConnection
Provides the implementation ofLogicalConnection
within the framework of the newConnection
framework ofjetty-io
.Methods in org.eclipse.jetty.websocket.common.io that return OutgoingFrames Modifier and Type Method Description static OutgoingFrames
FramePipes. to(IncomingFrames incoming)
Methods in org.eclipse.jetty.websocket.common.io with parameters of type OutgoingFrames Modifier and Type Method Description static IncomingFrames
FramePipes. to(OutgoingFrames outgoing)
-
Uses of OutgoingFrames in org.eclipse.jetty.websocket.common.message
Constructors in org.eclipse.jetty.websocket.common.message with parameters of type OutgoingFrames Constructor Description MessageOutputStream(OutgoingFrames outgoing, int bufferSize, ByteBufferPool bufferPool)
MessageWriter(OutgoingFrames outgoing, int bufferSize, ByteBufferPool bufferPool)
-
Uses of OutgoingFrames in org.eclipse.jetty.websocket.jsr356
Classes in org.eclipse.jetty.websocket.jsr356 that implement OutgoingFrames Modifier and Type Class Description class
JsrSession
Session for the JSR. -
Uses of OutgoingFrames in org.eclipse.jetty.websocket.server
Classes in org.eclipse.jetty.websocket.server that implement OutgoingFrames Modifier and Type Class Description class
WebSocketServerConnection
-