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.LifeCycle
LifeCycle.Listener
-
-
Constructor Summary
Constructors Constructor Description WebSocketExtensionFactory(WebSocketContainerScope container)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddLifeCycleListener(LifeCycle.Listener listener)java.lang.Stringdump()voiddump(java.lang.Appendable out, java.lang.String indent)Dump this object (and children) into an Appendable using the provided indent after any new lines.java.lang.StringdumpSelf()The description of this/self found in the dump.java.util.Map<java.lang.String,java.lang.Class<? extends Extension>>getAvailableExtensions()java.lang.Class<? extends Extension>getExtension(java.lang.String name)java.util.Set<java.lang.String>getExtensionNames()booleanisAvailable(java.lang.String name)booleanisFailed()booleanisRunning()booleanisStarted()booleanisStarting()booleanisStopped()booleanisStopping()java.util.Iterator<java.lang.Class<? extends Extension>>iterator()ExtensionnewInstance(ExtensionConfig config)voidregister(java.lang.String name, java.lang.Class<? extends Extension> extension)voidremoveLifeCycleListener(LifeCycle.Listener listener)voidstart()Starts the component.voidstop()Stops the component.java.lang.StringtoString()voidunregister(java.lang.String name)
-
-
-
Constructor Detail
-
WebSocketExtensionFactory
public WebSocketExtensionFactory(WebSocketContainerScope container)
-
-
Method Detail
-
getAvailableExtensions
public java.util.Map<java.lang.String,java.lang.Class<? extends Extension>> getAvailableExtensions()
- Overrides:
getAvailableExtensionsin classExtensionFactory
-
getExtension
public java.lang.Class<? extends Extension> getExtension(java.lang.String name)
- Overrides:
getExtensionin classExtensionFactory
-
getExtensionNames
public java.util.Set<java.lang.String> getExtensionNames()
- Overrides:
getExtensionNamesin classExtensionFactory
-
isAvailable
public boolean isAvailable(java.lang.String name)
- Overrides:
isAvailablein classExtensionFactory
-
newInstance
public Extension newInstance(ExtensionConfig config)
- Specified by:
newInstancein classExtensionFactory
-
register
public void register(java.lang.String name, java.lang.Class<? extends Extension> extension)- Overrides:
registerin classExtensionFactory
-
unregister
public void unregister(java.lang.String name)
- Overrides:
unregisterin classExtensionFactory
-
iterator
public java.util.Iterator<java.lang.Class<? extends Extension>> iterator()
- Specified by:
iteratorin interfacejava.lang.Iterable<java.lang.Class<? extends Extension>>- Overrides:
iteratorin classExtensionFactory
-
start
public void start() throws java.lang.ExceptionDescription copied from interface:LifeCycleStarts the component.- Specified by:
startin 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.ExceptionDescription copied from interface:LifeCycleStops the component. The component may wait for current activities to complete normally, but it can be interrupted.- Specified by:
stopin interfaceLifeCycle- Throws:
java.lang.Exception- If the component fails to stop- See Also:
LifeCycle.isStopped(),LifeCycle.start(),LifeCycle.isFailed()
-
isRunning
public boolean isRunning()
-
isStarted
public boolean isStarted()
- Specified by:
isStartedin interfaceLifeCycle- Returns:
- true if the component has been started.
- See Also:
LifeCycle.start(),LifeCycle.isStarting()
-
isStarting
public boolean isStarting()
- Specified by:
isStartingin interfaceLifeCycle- Returns:
- true if the component is starting.
- See Also:
LifeCycle.isStarted()
-
isStopping
public boolean isStopping()
- Specified by:
isStoppingin interfaceLifeCycle- Returns:
- true if the component is stopping.
- See Also:
LifeCycle.isStopped()
-
isStopped
public boolean isStopped()
- Specified by:
isStoppedin interfaceLifeCycle- Returns:
- true if the component has been stopped.
- See Also:
LifeCycle.stop(),LifeCycle.isStopping()
-
isFailed
public boolean isFailed()
-
addLifeCycleListener
public void addLifeCycleListener(LifeCycle.Listener listener)
- Specified by:
addLifeCycleListenerin interfaceLifeCycle
-
removeLifeCycleListener
public void removeLifeCycleListener(LifeCycle.Listener listener)
- Specified by:
removeLifeCycleListenerin interfaceLifeCycle
-
dumpSelf
public java.lang.String dumpSelf()
Description copied from interface:DumpableThe 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.IOExceptionDescription copied from interface:DumpableDump 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()
- Overrides:
toStringin classjava.lang.Object
-
-