Package org.eclipse.jetty.util.component
Class AbstractLifeCycle
- java.lang.Object
-
- org.eclipse.jetty.util.component.AbstractLifeCycle
-
- All Implemented Interfaces:
LifeCycle
- Direct Known Subclasses:
AbstractEventDriver,AbstractExtension,AbstractLeakPreventer,AcceptRateLimit,AllowedResourceAliasChecker,BaseHolder,ConnectionLimit,ConnectionStatistics,ConnectorServer,ConnectorStatistics,ContainerLifeCycle,DebugListener,HouseKeeper,LeakDetector,PathWatcher,RequestLogWriter,ReservedThreadExecutor,Scanner,ScheduledExecutorScheduler,ServletContextHandler.Initializer,SessionTracker,Slf4jRequestLogWriter,SpnegoLoginService,SslContextFactory,StopLifeCycle,Sweeper,TimerScheduler,UserStore
@ManagedObject("Abstract Implementation of LifeCycle") @Deprecated(since="2021-05-27") public abstract class AbstractLifeCycle extends java.lang.Object implements LifeCycle
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.Basic implementation of the life cycle interface for components.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAbstractLifeCycle.AbstractLifeCycleListenerDeprecated.this class is redundant now thatLifeCycle.Listenerhas default methods.-
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.component.LifeCycle
LifeCycle.Listener
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringFAILEDDeprecated.static java.lang.StringRUNNINGDeprecated.static java.lang.StringSTARTEDDeprecated.static java.lang.StringSTARTINGDeprecated.static java.lang.StringSTOPPEDDeprecated.static java.lang.StringSTOPPINGDeprecated.
-
Constructor Summary
Constructors Constructor Description AbstractLifeCycle()Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidaddLifeCycleListener(LifeCycle.Listener listener)Deprecated.java.lang.StringgetState()Deprecated.static java.lang.StringgetState(LifeCycle lc)Deprecated.longgetStopTimeout()Deprecated.booleanisFailed()Deprecated.booleanisRunning()Deprecated.booleanisStarted()Deprecated.booleanisStarting()Deprecated.booleanisStopped()Deprecated.booleanisStopping()Deprecated.voidremoveLifeCycleListener(LifeCycle.Listener listener)Deprecated.voidsetStopTimeout(long stopTimeout)Deprecated.voidstart()Deprecated.Starts the component.voidstop()Deprecated.Stops the component.java.lang.StringtoString()Deprecated.
-
-
-
Field Detail
-
STOPPED
public static final java.lang.String STOPPED
Deprecated.- See Also:
- Constant Field Values
-
FAILED
public static final java.lang.String FAILED
Deprecated.- See Also:
- Constant Field Values
-
STARTING
public static final java.lang.String STARTING
Deprecated.- See Also:
- Constant Field Values
-
STARTED
public static final java.lang.String STARTED
Deprecated.- See Also:
- Constant Field Values
-
STOPPING
public static final java.lang.String STOPPING
Deprecated.- See Also:
- Constant Field Values
-
RUNNING
public static final java.lang.String RUNNING
Deprecated.- See Also:
- Constant Field Values
-
-
Method Detail
-
start
public final void start() throws java.lang.ExceptionDeprecated.Description 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 final void stop() throws java.lang.ExceptionDeprecated.Description 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()
Deprecated.
-
isStarted
public boolean isStarted()
Deprecated.- Specified by:
isStartedin interfaceLifeCycle- Returns:
- true if the component has been started.
- See Also:
LifeCycle.start(),LifeCycle.isStarting()
-
isStarting
public boolean isStarting()
Deprecated.- Specified by:
isStartingin interfaceLifeCycle- Returns:
- true if the component is starting.
- See Also:
LifeCycle.isStarted()
-
isStopping
public boolean isStopping()
Deprecated.- Specified by:
isStoppingin interfaceLifeCycle- Returns:
- true if the component is stopping.
- See Also:
LifeCycle.isStopped()
-
isStopped
public boolean isStopped()
Deprecated.- Specified by:
isStoppedin 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:
addLifeCycleListenerin interfaceLifeCycle
-
removeLifeCycleListener
public void removeLifeCycleListener(LifeCycle.Listener listener)
Deprecated.- Specified by:
removeLifeCycleListenerin interfaceLifeCycle
-
getState
@ManagedAttribute(value="Lifecycle State for this instance", readonly=true) public java.lang.String getState()
Deprecated.
-
getState
public static java.lang.String getState(LifeCycle lc)
Deprecated.
-
getStopTimeout
@ManagedAttribute("The stop timeout in milliseconds") public long getStopTimeout()
Deprecated.
-
setStopTimeout
public void setStopTimeout(long stopTimeout)
Deprecated.
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toStringin classjava.lang.Object
-
-