Package com.caucho.services.server
Interface Service
-
- All Known Implementing Classes:
GenericService
public interface Service
Interface for a service lifecycle.The lifecycle for a service starts with the
init
method when the service starts.myService.init(config); ... myService.hello(); ... myService.hello(); ... myService.destroy();
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
destroy()
Cleanup the service instance.void
init(javax.servlet.ServletConfig config)
Initialize the service instance.
-