All Packages Class Hierarchy This Package Previous Next Index
Interface com.jobjects.jst.ServiceControlListener
- public interface ServiceControlListener
The listener interface for receiving events from the
service control manager.
- See Also:
- addServiceControlListener
-
continueService()
- Request from the service control manager to continue
the service.
-
pauseService()
- Request from the service control manager to pause
the service.
-
shutdownService()
- Signals that machine has being shut down.
-
stopService()
- Request from the service control manager to stop
the service.
stopService
public abstract void stopService()
- Request from the service control manager to stop
the service. Service application should make a
cleanup here.
When this method returns it is assumed
that the service has been stopped.
pauseService
public abstract void pauseService()
- Request from the service control manager to pause
the service.
continueService
public abstract void continueService()
- Request from the service control manager to continue
the service.
shutdownService
public abstract void shutdownService()
- Signals that machine has being shut down.
Service application have to perform a fast cleanup.
All Packages Class Hierarchy This Package Previous Next Index