Package com.caucho.services.server
Interface Service
-
- All Known Implementing Classes:
GenericService
public interface ServiceInterface for a service lifecycle.The lifecycle for a service starts with the
initmethod 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 voiddestroy()Cleanup the service instance.voidinit(javax.servlet.ServletConfig config)Initialize the service instance.
-