public interface Service
The lifecycle for a service starts with the init
method when the service starts.
myService.init(config);
...
myService.hello();
...
myService.hello();
...
myService.destroy();
Copyright 2003-2013. All Rights Reserved.