-
Notifications
You must be signed in to change notification settings - Fork 103
Java Method Reference
The background service provides various methods that may be overriden within the background service that you develop.
Method is intended to used by derived background services to provide the actual program logic. This is the most critical method to override, otherwise no action will occur from the background service.
Method is used to produce the configuration JSON object to be provided to the HTML/ Javascript front-end.
Method is used to receive the configuration provided by the HTML/ Javascript front-end. It is the responsibility of the method to process the configuration and process as appropriate.
Method is used to allow you to initialize the result. This allows for your background service to set results that will be returned to the HTML/ Javascript Front-End in the [Returned JSON] (Returned-JSON) before [doWork] (doWork) has had run (and thus set the result).
Method that allows you to provide logic when the background service timer is enabled.
Method that allows you to provide logic when the background service timer is disabled.
Method that allows you to provide logic when the background service is paused.
Method that allows you to provide logic when the background service has completed any pause.