Uses of Interface
org.eclipse.jetty.websocket.api.extensions.IncomingFrames
-
Packages that use IncomingFrames Package Description org.eclipse.jetty.websocket.api.extensions Jetty WebSocket API : WebSocket Extension APIorg.eclipse.jetty.websocket.common Jetty WebSocket Common : Implementation [Internal Use Only]org.eclipse.jetty.websocket.common.events Jetty WebSocket Common : Event Driver for WebSocket Objectorg.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.jsr356 org.eclipse.jetty.websocket.jsr356.endpoints -
-
Uses of IncomingFrames in org.eclipse.jetty.websocket.api.extensions
Subinterfaces of IncomingFrames 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 IncomingFrames Modifier and Type Method Description void
Extension. setNextIncomingFrames(IncomingFrames nextIncoming)
Set the nextIncomingFrames
to call in the chain. -
Uses of IncomingFrames in org.eclipse.jetty.websocket.common
Classes in org.eclipse.jetty.websocket.common that implement IncomingFrames Modifier and Type Class Description class
WebSocketSession
Methods in org.eclipse.jetty.websocket.common that return IncomingFrames Modifier and Type Method Description IncomingFrames
Parser. getIncomingFramesHandler()
IncomingFrames
WebSocketSession. getIncomingHandler()
Methods in org.eclipse.jetty.websocket.common with parameters of type IncomingFrames Modifier and Type Method Description void
Parser. setIncomingFramesHandler(IncomingFrames incoming)
void
LogicalConnection. setNextIncomingFrames(IncomingFrames incoming)
Set where the connection should send the incoming frames to. -
Uses of IncomingFrames in org.eclipse.jetty.websocket.common.events
Subinterfaces of IncomingFrames in org.eclipse.jetty.websocket.common.events Modifier and Type Interface Description interface
EventDriver
Classes in org.eclipse.jetty.websocket.common.events that implement IncomingFrames Modifier and Type Class Description class
AbstractEventDriver
EventDriver is the main interface between the User's WebSocket POJO and the internal jetty implementation of WebSocket.class
JettyAnnotatedEventDriver
Handler for Annotated User WebSocket objects.class
JettyListenerEventDriver
Handler forWebSocketListener
based User WebSocket implementations. -
Uses of IncomingFrames in org.eclipse.jetty.websocket.common.extensions
Classes in org.eclipse.jetty.websocket.common.extensions that implement IncomingFrames 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 IncomingFrames Modifier and Type Method Description IncomingFrames
AbstractExtension. getNextIncoming()
IncomingFrames
ExtensionStack. getNextIncoming()
Methods in org.eclipse.jetty.websocket.common.extensions with parameters of type IncomingFrames Modifier and Type Method Description void
ExtensionStack. setNextIncoming(IncomingFrames nextIncoming)
void
AbstractExtension. setNextIncomingFrames(IncomingFrames nextIncoming)
-
Uses of IncomingFrames in org.eclipse.jetty.websocket.common.extensions.compress
Classes in org.eclipse.jetty.websocket.common.extensions.compress that implement IncomingFrames 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 IncomingFrames in org.eclipse.jetty.websocket.common.extensions.fragment
Classes in org.eclipse.jetty.websocket.common.extensions.fragment that implement IncomingFrames Modifier and Type Class Description class
FragmentExtension
Fragment Extension -
Uses of IncomingFrames in org.eclipse.jetty.websocket.common.extensions.identity
Classes in org.eclipse.jetty.websocket.common.extensions.identity that implement IncomingFrames Modifier and Type Class Description class
IdentityExtension
-
Uses of IncomingFrames in org.eclipse.jetty.websocket.common.io
Methods in org.eclipse.jetty.websocket.common.io that return IncomingFrames Modifier and Type Method Description static IncomingFrames
FramePipes. to(OutgoingFrames outgoing)
Methods in org.eclipse.jetty.websocket.common.io with parameters of type IncomingFrames Modifier and Type Method Description void
AbstractWebSocketConnection. setNextIncomingFrames(IncomingFrames incoming)
static OutgoingFrames
FramePipes. to(IncomingFrames incoming)
-
Uses of IncomingFrames in org.eclipse.jetty.websocket.jsr356
Classes in org.eclipse.jetty.websocket.jsr356 that implement IncomingFrames Modifier and Type Class Description class
JsrSession
Session for the JSR. -
Uses of IncomingFrames in org.eclipse.jetty.websocket.jsr356.endpoints
Classes in org.eclipse.jetty.websocket.jsr356.endpoints that implement IncomingFrames Modifier and Type Class Description class
AbstractJsrEventDriver
class
JsrAnnotatedEventDriver
Base implementation for JSR-356 Annotated event drivers.class
JsrEndpointEventDriver
EventDriver for websocket that extend fromEndpoint
-