Package com.tangosol.util
Interface ServiceListener
-
- All Superinterfaces:
EventListener
public interface ServiceListener extends EventListener
The listener interface for receiving ServiceEvents.- Author:
- jh 2007.11.12
- See Also:
Service
,ServiceEvent
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
serviceStarted(ServiceEvent evt)
Invoked when a service has started.void
serviceStarting(ServiceEvent evt)
Invoked when a service is starting.void
serviceStopped(ServiceEvent evt)
Invoked when a service has stopped.void
serviceStopping(ServiceEvent evt)
Invoked when a service is stopping.
-
-
-
Method Detail
-
serviceStarting
void serviceStarting(ServiceEvent evt)
Invoked when a service is starting.- Parameters:
evt
- the ServiceEvent.SERVICE_STARTING event
-
serviceStarted
void serviceStarted(ServiceEvent evt)
Invoked when a service has started.- Parameters:
evt
- the ServiceEvent.SERVICE_STARTED event
-
serviceStopping
void serviceStopping(ServiceEvent evt)
Invoked when a service is stopping.- Parameters:
evt
- the ServiceEvent.SERVICE_STOPPING event
-
serviceStopped
void serviceStopped(ServiceEvent evt)
Invoked when a service has stopped.- Parameters:
evt
- the ServiceEvent.SERVICE_STOPPED event
-
-