Class AbstractLifeCycle
- java.lang.Object
-
- com.aspectran.core.util.lifecycle.AbstractLifeCycle
-
- All Implemented Interfaces:
LifeCycle
- Direct Known Subclasses:
StopLifeCycle
public abstract class AbstractLifeCycle extends java.lang.Object implements LifeCycle
Basic implementation of the life cycle interface for components.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.aspectran.core.util.lifecycle.LifeCycle
LifeCycle.Listener
-
-
Constructor Summary
Constructors Constructor Description AbstractLifeCycle()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddLifeCycleListener(LifeCycle.Listener listener)protected voiddoStart()protected voiddoStop()java.lang.StringgetState()static java.lang.StringgetState(LifeCycle lc)booleanisFailed()booleanisRunning()booleanisStarted()booleanisStarting()booleanisStopped()booleanisStopping()voidremoveLifeCycleListener(LifeCycle.Listener listener)voidstart()Starts the component.voidstop()Stops the component.java.lang.StringtoString()
-
-
-
Method Detail
-
doStart
protected void doStart() throws java.lang.Exception- Throws:
java.lang.Exception
-
doStop
protected void doStop() throws java.lang.Exception- Throws:
java.lang.Exception
-
start
public final 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 final 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
-
getState
public java.lang.String getState()
-
getState
public static java.lang.String getState(LifeCycle lc)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-