Difference between revisions of "Extensions.EventHandling.IsTimerExpiredEvent"
Jump to navigation
Jump to search
m (Hb moved page IsTimerExpiredEvent to Extensions.EventHandling.IsTimerExpiredEvent: #3153) |
|||
Line 1: | Line 1: | ||
− | [[Category:EventHandling]] | + | {{DISPLAYTITLE: '''IsTimerExpiredEvent '''}}[[Category:EventHandling]] |
== Classification == | == Classification == | ||
− | {{ClassificationActivity | IsTimerExpiredEvent | Checks whether an event comes '''TimerExpiredEventSource''' | [[Term]] | [[EventHandling|OTX EventHandling extension]] | [[Event source property related terms]] | - | - }} | + | {{ClassificationActivity | IsTimerExpiredEvent | Checks whether an event comes '''TimerExpiredEventSource''' | [[Term]] | [[Extensions.EventHandling|OTX EventHandling extension]] | [[Event source property related terms]] | - | - }} |
== OTL Syntax == | == OTL Syntax == | ||
Line 11: | Line 11: | ||
The OTX '''IsTimerExpiredEvent''' term is TRUE back when the event if and only from TimerExpiredEventSource comes. | The OTX '''IsTimerExpiredEvent''' term is TRUE back when the event if and only from TimerExpiredEventSource comes. | ||
− | {{TermReturnValue| [[Boolean]] | Returns TRUE if the event comes from a '''TimerExpiredEventSource'''.}} | + | {{TermReturnValue| [[Core.DataTypes.SimpleDataType.Boolean|Boolean]] | Returns TRUE if the event comes from a '''TimerExpiredEventSource'''.}} |
== Properties == | == Properties == | ||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie1| Event | [[Event]] | [[Term]] | - | [1] | The event, whose type is checked.}} | + | {{TableRowPropertie1| Event | [[Extensions.EventHandling.Event|Event]] | [[Term]] | - | [1] | The event, whose type is checked.}} |
|} | |} | ||
Line 31: | Line 31: | ||
== See also == | == See also == | ||
− | [[ | + | [[Extensions.EventHandling.IsMonitorChangeEvent|IsMonitorChangeEvent]] <br/> |
− | [[ | + | [[Extensions.EventHandling.IsTresholdExceededEvent|IsTresholdExceededEvent]] <br/> |
− | [[GetNewValue]] | + | [[Extensions.EventHandling.GetNewValue|GetNewValue]] |
Revision as of 06:46, 15 February 2016
Contents
Classification
Name | IsTimerExpiredEvent |
Short Description | Checks whether an event comes TimerExpiredEventSource |
Class | Term |
Extension | OTX EventHandling extension |
Group | Event source property related terms |
Exceptions | - |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
BooleanTerm = EventHandling.IsTimerExpiredEvent(EventTerm);
Description
The OTX IsTimerExpiredEvent term is TRUE back when the event if and only from TimerExpiredEventSource comes.
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
Boolean | Returns TRUE if the event comes from a TimerExpiredEventSource. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
Event | Event | Term | - | [1] | The event, whose type is checked. |
OTL Examples
EventHandling.EventSource EventSource1;
EventHandling.Event Event1;
Boolean Boolean1 = false;
EventSource1 = EventHandling.TimerExpiredEventSource(100);
EventHandling.WaitForEvent({EventSource1}, Event1);
Boolean1 = EventHandling.IsTimerExpiredEvent(Event1);