TaskMaintenanceTriggerEnum Enumeration: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
(Created page with '{{Template:API}}{{Template:APIBreadcrumb}} <onlyinclude>Specifies which event(s) in the maintenance group(s) triggers the task.</onlyinclude> ==Members== {| {{APITableEnum}} |…')
 
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 2: Line 2:




<onlyinclude>Specifies which event(s) in the maintenance group(s) triggers the task.</onlyinclude>
<onlyinclude>Specifies which event in the maintenance group(s) triggers the task.</onlyinclude>


==Members==
==Members==
{| {{APITableEnum}}
{| {{APITableEnum}}
|-
|-
| style="width: 160px;"|BlockFails||style="width: 70px;"|1||The task is performed when a block in the maintenance group fails.
| style="width: 160px;"|NoTriggers||style="width: 70px;"|0||No task is performed.
|-
|BlockFails||1||The task is performed when a block in the maintenance group fails.
|-
|-
|CorrectiveMaintenance||2||The task is performed when a block in the maintenance group starts corrective maintenance.
|CorrectiveMaintenance||2||The task is performed when a block in the maintenance group starts corrective maintenance.
Line 17: Line 19:
|BlockRestored||16||The task is performed when a block in the maintenance group is restored to operation.
|BlockRestored||16||The task is performed when a block in the maintenance group is restored to operation.
|}
|}




Line 24: Line 24:


==See Also==
==See Also==
*[[CScheduledTask Class|cScheduledTask Class]]
*[[CScheduledTask.MaintenanceTriggers|CScheduledTask.MaintenanceTriggers Property]]

Latest revision as of 21:58, 24 June 2016

APIWiki.png


Member of: SynthesisAPI


Specifies which event in the maintenance group(s) triggers the task.

Members

Name Value Description
NoTriggers 0 No task is performed.
BlockFails 1 The task is performed when a block in the maintenance group fails.
CorrectiveMaintenance 2 The task is performed when a block in the maintenance group starts corrective maintenance.
PreventiveMaintenance 4 The task is performed when a block in the maintenance group starts preventive maintenance.
Inspection 8 The task is performed when a block in the maintenance group starts inspection.
BlockRestored 16 The task is performed when a block in the maintenance group is restored to operation.



See Also