| com.jcorporate.expresso.kernel.Startable
Startable | public interface Startable (Code) | | This Interface is implemented by any component that has services that 'start' and 'stop'.
The start lifecycle is called after configuration is complete, the stop lifecycle
is called right before destruction, or in reconfiguration.
author: Michael Rimov since: Expresso 5.1 |
Method Summary | |
public void | start() Called when the system wants the service to start. | public void | stop() Called when the system wants the service to stop. |
start | public void start()(Code) | | Called when the system wants the service to start. This, like any of the
other lifecycle events may
|
stop | public void stop()(Code) | | Called when the system wants the service to stop. Stop should attempt to
release all resources, so that a component can virtuall "cold start" when (if)
start is called again.
|
|
|