public abstract class ExecutionPolicy
extends java.lang.Object
getInstance()
with the ExecutionPolicy XML from the Service to return a configured instance,
which can then be enabled using enable()
.
Example Configurations:
<ExecutionPolicy>
<CronJob>
<Command>55 19 * * *</Command>
</CronJob>
</ExecutionPolicy>
Starts this service at 19:55:00 local time each day.
<ExecutionPolicy>
<CronJob>
<Commands>
<Command>55 19 * * *</Command>
<Command>56 19 * * *</Command>
</Commands>
</CronJob>
</ExecutionPolicy>
Starts this Service at 19:55:00 and 19:56:00 local time each day.
If the Service from 19:55 is still running at 19:56, then the execution on 19:56 is skipped.
ExecutionPolicyCronJob
for an example of how to abort the running thread in this case.Constructor and Description |
---|
ExecutionPolicy(ServiceInstanceI _si,
electric.xml.Element _confRoot,
ServiceI _service,
java.lang.String _description) |
Modifier and Type | Method and Description |
---|---|
void |
disable()
Disables a running Service and stops its worker thread.
|
void |
enable()
Enables and starts this Executionpolicy, causing the BS to be executed at the next
scheduled time.
|
void |
finish() |
electric.xml.Element |
getConfRoot() |
java.lang.String |
getDescription() |
static ExecutionPolicy |
getInstance(ServiceInstanceI _si,
electric.xml.Element _confRoot,
ServiceI _service,
java.lang.String _description)
Parses the XML Configuration element and returns the ExecutionPolicy defined for it.
|
ServiceI |
getService() |
ServiceInstanceI |
getSi() |
java.lang.Long |
getWDTimeoutMillis() |
void |
resetUnrecoverableError()
Clears any unrecoverable errors on the
ServiceI instance, setting it to null. |
void |
setConfRoot(electric.xml.Element $4) |
void |
setDescription(java.lang.String $6) |
void |
setService(ServiceI $5) |
void |
setSi(ServiceInstanceI $3) |
void |
setWDTimeoutMillis(java.lang.Long $7) |
java.lang.String |
toString() |
public ExecutionPolicy(ServiceInstanceI _si, electric.xml.Element _confRoot, ServiceI _service, java.lang.String _description)
public static ExecutionPolicy getInstance(ServiceInstanceI _si, electric.xml.Element _confRoot, ServiceI _service, java.lang.String _description)
_si
- the (wrapper) class for services._confRoot
- the root Element of the ExecutionPolicy configuration._service
- the ServiceI instance, i.e. the 'api' the service should use.ExecutionPolicyKeepRunning
or an ExecutionPolicyCronJob
public void disable()
public void enable()
public void finish()
public void resetUnrecoverableError()
ServiceI
instance, setting it to null.public java.lang.String toString()
toString
in class java.lang.Object
public ServiceInstanceI getSi()
public void setSi(ServiceInstanceI $3)
public electric.xml.Element getConfRoot()
public void setConfRoot(electric.xml.Element $4)
public ServiceI getService()
public void setService(ServiceI $5)
public java.lang.String getDescription()
public void setDescription(java.lang.String $6)
public java.lang.Long getWDTimeoutMillis()
public void setWDTimeoutMillis(java.lang.Long $7)
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.