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

Method Index

 o continueService()
Request from the service control manager to continue the service.
 o pauseService()
Request from the service control manager to pause the service.
 o shutdownService()
Signals that machine has being shut down.
 o stopService()
Request from the service control manager to stop the service.

Methods

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

 o pauseService
 public abstract void pauseService()
Request from the service control manager to pause the service.

 o continueService
 public abstract void continueService()
Request from the service control manager to continue the service.

 o 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