Package com.tangosol.util
Interface ServiceListener
- All Superinterfaces:
EventListener
The listener interface for receiving ServiceEvents.
- Author:
- jh 2007.11.12
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiondefault void
Invoked when a service has been resumed.void
Invoked when a service has started.void
Invoked when a service is starting.void
Invoked when a service has stopped.void
Invoked when a service is stopping.default void
Invoked when a service has stopped.
-
Method Details
-
serviceStarting
Invoked when a service is starting.- Parameters:
evt
- the ServiceEvent.SERVICE_STARTING event
-
serviceStarted
Invoked when a service has started.- Parameters:
evt
- the ServiceEvent.SERVICE_STARTED event
-
serviceStopping
Invoked when a service is stopping.- Parameters:
evt
- the ServiceEvent.SERVICE_STOPPING event
-
serviceStopped
Invoked when a service has stopped.- Parameters:
evt
- the ServiceEvent.SERVICE_STOPPED event
-
serviceSuspended
Invoked when a service has stopped.- Parameters:
evt
- the ServiceEvent.SERVICE_STOPPED event
-
serviceResumed
Invoked when a service has been resumed.- Parameters:
evt
- the ServiceEvent.SERVICE_STOPPED event
-