Class WebSocketExtensionFactory
- java.lang.Object
-
- org.eclipse.jetty.websocket.api.extensions.ExtensionFactory
-
- org.eclipse.jetty.websocket.common.extensions.WebSocketExtensionFactory
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.component.Dumpable
Dumpable.DumpableContainer
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.component.LifeCycle
LifeCycle.Listener
-
-
Constructor Summary
Constructors Constructor Description WebSocketExtensionFactory(WebSocketContainerScope container)
Deprecated.WebSocketExtensionFactory(WebSocketContainerScope container, org.eclipse.jetty.util.compression.InflaterPool inflaterPool, org.eclipse.jetty.util.compression.DeflaterPool deflaterPool)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
addLifeCycleListener(LifeCycle.Listener listener)
Deprecated.java.lang.String
dump()
Deprecated.void
dump(java.lang.Appendable out, java.lang.String indent)
Deprecated.Dump this object (and children) into an Appendable using the provided indent after any new lines.java.lang.String
dumpSelf()
Deprecated.The description of this/self found in the dump.org.eclipse.jetty.util.compression.DeflaterPool
getDeflaterPool()
Deprecated.org.eclipse.jetty.util.compression.InflaterPool
getInflaterPool()
Deprecated.boolean
isFailed()
Deprecated.boolean
isRunning()
Deprecated.boolean
isStarted()
Deprecated.boolean
isStarting()
Deprecated.boolean
isStopped()
Deprecated.boolean
isStopping()
Deprecated.Extension
newInstance(ExtensionConfig config)
Deprecated.void
removeLifeCycleListener(LifeCycle.Listener listener)
Deprecated.void
start()
Deprecated.Starts the component.void
stop()
Deprecated.Stops the component.java.lang.String
toString()
Deprecated.void
unmanage(java.lang.Object object)
Deprecated.-
Methods inherited from class org.eclipse.jetty.websocket.api.extensions.ExtensionFactory
getAvailableExtensions, getExtension, getExtensionNames, isAvailable, iterator, register, unregister
-
-
-
-
Constructor Detail
-
WebSocketExtensionFactory
public WebSocketExtensionFactory(WebSocketContainerScope container)
Deprecated.
-
WebSocketExtensionFactory
public WebSocketExtensionFactory(WebSocketContainerScope container, org.eclipse.jetty.util.compression.InflaterPool inflaterPool, org.eclipse.jetty.util.compression.DeflaterPool deflaterPool)
Deprecated.
-
-
Method Detail
-
unmanage
public void unmanage(java.lang.Object object)
Deprecated.
-
getInflaterPool
public org.eclipse.jetty.util.compression.InflaterPool getInflaterPool()
Deprecated.
-
getDeflaterPool
public org.eclipse.jetty.util.compression.DeflaterPool getDeflaterPool()
Deprecated.
-
newInstance
public Extension newInstance(ExtensionConfig config)
Deprecated.- Specified by:
newInstance
in classExtensionFactory
-
start
public void start() throws java.lang.Exception
Deprecated.Description copied from interface:LifeCycle
Starts the component.- Specified by:
start
in interfaceLifeCycle
- Throws:
java.lang.Exception
- If the component fails to start- See Also:
LifeCycle.isStarted()
,LifeCycle.stop()
,LifeCycle.isFailed()
-
stop
public void stop() throws java.lang.Exception
Deprecated.Description copied from interface:LifeCycle
Stops the component. The component may wait for current activities to complete normally, but it can be interrupted.- Specified by:
stop
in interfaceLifeCycle
- Throws:
java.lang.Exception
- If the component fails to stop- See Also:
LifeCycle.isStopped()
,LifeCycle.start()
,LifeCycle.isFailed()
-
isRunning
public boolean isRunning()
Deprecated.
-
isStarted
public boolean isStarted()
Deprecated.- Specified by:
isStarted
in interfaceLifeCycle
- Returns:
- true if the component has been started.
- See Also:
LifeCycle.start()
,LifeCycle.isStarting()
-
isStarting
public boolean isStarting()
Deprecated.- Specified by:
isStarting
in interfaceLifeCycle
- Returns:
- true if the component is starting.
- See Also:
LifeCycle.isStarted()
-
isStopping
public boolean isStopping()
Deprecated.- Specified by:
isStopping
in interfaceLifeCycle
- Returns:
- true if the component is stopping.
- See Also:
LifeCycle.isStopped()
-
isStopped
public boolean isStopped()
Deprecated.- Specified by:
isStopped
in interfaceLifeCycle
- Returns:
- true if the component has been stopped.
- See Also:
LifeCycle.stop()
,LifeCycle.isStopping()
-
isFailed
public boolean isFailed()
Deprecated.
-
addLifeCycleListener
public void addLifeCycleListener(LifeCycle.Listener listener)
Deprecated.- Specified by:
addLifeCycleListener
in interfaceLifeCycle
-
removeLifeCycleListener
public void removeLifeCycleListener(LifeCycle.Listener listener)
Deprecated.- Specified by:
removeLifeCycleListener
in interfaceLifeCycle
-
dumpSelf
public java.lang.String dumpSelf()
Deprecated.Description copied from interface:Dumpable
The description of this/self found in the dump. Allows for alternative representation of Object other then .toString() where the long form output of toString() is represented in a cleaner way within the dump infrastructure.
-
dump
public void dump(java.lang.Appendable out, java.lang.String indent) throws java.io.IOException
Deprecated.Description copied from interface:Dumpable
Dump this object (and children) into an Appendable using the provided indent after any new lines. The indent should not be applied to the first object dumped.
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toString
in classjava.lang.Object
-
-