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 TypeMethodDescriptionvoid
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.
-
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
-