public interface LifecycleContext extends Executor
Modifier and Type | Method and Description |
---|---|
void |
asynchronous()
Call within the service lifecycle method to trigger an asynchronous lifecycle action.
|
void |
complete()
Call when either synchronous or asynchronous lifecycle action is complete.
|
void |
execute(Runnable command)
Execute a task asynchronously using the MSC task executor.
|
ServiceController<?> |
getController()
Get the associated service controller.
|
long |
getElapsedTime()
Get the amount of time elapsed since the start or stop was initiated, in nanoseconds.
|
void asynchronous() throws IllegalStateException
complete()
method on this interface.IllegalStateException
- if called twice in a rowvoid complete() throws IllegalStateException
IllegalStateException
- if called twice in a rowlong getElapsedTime()
ServiceController<?> getController()
void execute(Runnable command)
Note: This method should not be used for executing tasks that may block,
particularly from within a service's Service.start(StartContext)
or Service.stop(StopContext)
methods. See the Service class javadoc
for further details.
Copyright © 2017 JBoss by Red Hat. All rights reserved.