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 voidInvoked when a service has been resumed.voidInvoked when a service has started.voidInvoked when a service is starting.voidInvoked when a service has stopped.voidInvoked when a service is stopping.default voidInvoked 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
 
 -