TaskFrequencyEnum Enumeration: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Template:API}}{{Template:APIBreadcrumbClass}}
{{Template:API}}{{Template:APIBreadcrumb}}




<onlyinclude>Specifies the frequency with which a task is performed. </onlyinclude>
<onlyinclude>Specifies the frequency at which a task is performed. </onlyinclude>


== Members ==
== Members ==
'''All Tasks'''
{| {{APITableEnum}}
{| {{APITableEnum}}
|-
|-
|style="width:200px"|Never||style="width:70px"|0||The task is never performed.
|style="width:200px"|Never||style="width:70px"|0||The task is never performed.
|}
'''Preventive Tasks'''
{| {{APITableEnum}}
|-
|-
|style="width:200px"|ItemAge||style="width:70px"|1||Fixed time frame based on item's age.
|ItemAge||style="width:70px"|1||Fixed time frame based on item's age.
|-
|-
|SystemAge||2||Fixed time frame based on calendar time.
|SystemAge||2||Fixed time frame based on calendar time.
Line 28: Line 22:
|-
|-
|MaintenancePhase||7||When a maintenance phase starts.
|MaintenancePhase||7||When a maintenance phase starts.
|-
|UponFailure||8||Upon item failure (corrective task).
|-
|UponInspection||9||When found failed during an inspection (corrective task).
|}
|}




'''Corrective Tasks'''
 
{| {{APITableEnum}}
 
|-
 
|style="width:200px"|UponFailure||style="width:70px"|8||Upon item failure.
==See Also==
|-
*[[CCorrectiveTask Class|cCorrectiveTask Class]]
|UponInspection||9||When found failed during an inspection.
*[[CScheduledTask Class|cScheduledTask Class]]
|}

Latest revision as of 21:31, 13 November 2015

APIWiki.png


Member of: SynthesisAPI


Specifies the frequency at which a task is performed.

Members

Name Value Description
Never 0 The task is never performed.
ItemAge 1 Fixed time frame based on item's age.
SystemAge 2 Fixed time frame based on calendar time.
DynamicIntervalsOnSystemAge 3 Dynamic intervals based on the item's age.
DynamicIntervalsOnItemAge 4 Dynamic intervals based on calendar time.
SystemDown 5 Whenever the system is down.
GroupMaintenance 6 Based on events in a maintenance group.
MaintenancePhase 7 When a maintenance phase starts.
UponFailure 8 Upon item failure (corrective task).
UponInspection 9 When found failed during an inspection (corrective task).



See Also