Class AbstractExtension
- java.lang.Object
-
- org.eclipse.jetty.util.component.AbstractLifeCycle
-
- org.eclipse.jetty.websocket.common.extensions.AbstractExtension
-
- All Implemented Interfaces:
LifeCycle,Extension,IncomingFrames,OutgoingFrames
- Direct Known Subclasses:
CompressExtension,FragmentExtension,FrameCaptureExtension,IdentityExtension
@ManagedObject("Abstract Extension") public abstract class AbstractExtension extends AbstractLifeCycle implements Extension
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.eclipse.jetty.util.component.AbstractLifeCycle
AbstractLifeCycle.AbstractLifeCycleListener
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.component.LifeCycle
LifeCycle.Listener
-
-
Constructor Summary
Constructors Constructor Description AbstractExtension()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description ByteBufferPoolgetBufferPool()ExtensionConfiggetConfig()LogicalConnectiongetConnection()java.lang.StringgetName()IncomingFramesgetNextIncoming()OutgoingFramesgetNextOutgoing()WebSocketPolicygetPolicy()voidinit(WebSocketPolicy policy, ByteBufferPool bufferPool)voidinit(WebSocketContainerScope container)Deprecated.booleanisRsv1User()Used to indicate that the extension makes use of the RSV1 bit of the base websocket framing.booleanisRsv2User()Used to indicate that the extension makes use of the RSV2 bit of the base websocket framing.booleanisRsv3User()Used to indicate that the extension makes use of the RSV3 bit of the base websocket framing.protected voidnextIncomingFrame(Frame frame)protected voidnextOutgoingFrame(Frame frame, WriteCallback callback, BatchMode batchMode)voidsetBufferPool(ByteBufferPool bufferPool)voidsetConfig(ExtensionConfig config)voidsetConnection(LogicalConnection connection)voidsetNextIncomingFrames(IncomingFrames nextIncoming)voidsetNextOutgoingFrames(OutgoingFrames nextOutgoing)voidsetPolicy(WebSocketPolicy policy)java.lang.StringtoString()-
Methods inherited from class org.eclipse.jetty.util.component.AbstractLifeCycle
addLifeCycleListener, doStart, doStop, getState, getState, getStopTimeout, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, setStopTimeout, start, stop
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.eclipse.jetty.websocket.api.extensions.IncomingFrames
incomingFrame
-
Methods inherited from interface org.eclipse.jetty.websocket.api.extensions.OutgoingFrames
outgoingFrame
-
-
-
-
Method Detail
-
init
@Deprecated public void init(WebSocketContainerScope container)
Deprecated.
-
init
public void init(WebSocketPolicy policy, ByteBufferPool bufferPool)
-
getBufferPool
public ByteBufferPool getBufferPool()
-
getConfig
public ExtensionConfig getConfig()
-
getConnection
public LogicalConnection getConnection()
-
getNextIncoming
@ManagedAttribute(name="Next Incoming Frame Handler", readonly=true) public IncomingFrames getNextIncoming()
-
getNextOutgoing
@ManagedAttribute(name="Next Outgoing Frame Handler", readonly=true) public OutgoingFrames getNextOutgoing()
-
getPolicy
public WebSocketPolicy getPolicy()
-
isRsv1User
public boolean isRsv1User()
Used to indicate that the extension makes use of the RSV1 bit of the base websocket framing.This is used to adjust validation during parsing, as well as a checkpoint against 2 or more extensions all simultaneously claiming ownership of RSV1.
- Specified by:
isRsv1Userin interfaceExtension- Returns:
- true if extension uses RSV1 for its own purposes.
-
isRsv2User
public boolean isRsv2User()
Used to indicate that the extension makes use of the RSV2 bit of the base websocket framing.This is used to adjust validation during parsing, as well as a checkpoint against 2 or more extensions all simultaneously claiming ownership of RSV2.
- Specified by:
isRsv2Userin interfaceExtension- Returns:
- true if extension uses RSV2 for its own purposes.
-
isRsv3User
public boolean isRsv3User()
Used to indicate that the extension makes use of the RSV3 bit of the base websocket framing.This is used to adjust validation during parsing, as well as a checkpoint against 2 or more extensions all simultaneously claiming ownership of RSV3.
- Specified by:
isRsv3Userin interfaceExtension- Returns:
- true if extension uses RSV3 for its own purposes.
-
nextIncomingFrame
protected void nextIncomingFrame(Frame frame)
-
nextOutgoingFrame
protected void nextOutgoingFrame(Frame frame, WriteCallback callback, BatchMode batchMode)
-
setBufferPool
public void setBufferPool(ByteBufferPool bufferPool)
-
setConfig
public void setConfig(ExtensionConfig config)
-
setConnection
public void setConnection(LogicalConnection connection)
-
setNextIncomingFrames
public void setNextIncomingFrames(IncomingFrames nextIncoming)
- Specified by:
setNextIncomingFramesin interfaceExtension
-
setNextOutgoingFrames
public void setNextOutgoingFrames(OutgoingFrames nextOutgoing)
- Specified by:
setNextOutgoingFramesin interfaceExtension
-
setPolicy
public void setPolicy(WebSocketPolicy policy)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classAbstractLifeCycle
-
-