Package org.jboss.msc.service
Interface LifecycleListener
-
public interface LifecycleListener
A listener for service lifecycle events. The associated controller will not leave its current state until all listeners finish running.- Author:
- Richard Opalka
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handleEvent(ServiceController<?> controller, LifecycleEvent event)
The service has entered new state
-
-
-
Method Detail
-
handleEvent
void handleEvent(ServiceController<?> controller, LifecycleEvent event)
The service has entered new state- Parameters:
controller
- the controllerevent
- the lifecycle event
-
-