Difference between revisions of "Extensions.EventHandling.CloseEventSource"
Jump to navigation
Jump to search
m (Hb moved page CloseEventSource to Extensions.EventHandling.CloseEventSource: #3153) |
|||
Line 1: | Line 1: | ||
− | [[Category:EventHandling]] | + | {{DISPLAYTITLE: '''CloseEventSource'''}}[[Category:EventHandling]] |
== Classification == | == Classification == | ||
− | {{ClassificationActivity | CloseEventSource | Stops the event processing all specified sources | [[Action]]| [[DiagCom|OTX DiagCom extension]] | [[EventHandling related actions]] | - | - }} | + | {{ClassificationActivity | CloseEventSource | Stops the event processing all specified sources | [[Action]]| [[Extensions.DiagCom|OTX DiagCom extension]] | [[EventHandling related actions]] | - | - }} |
== OTL Syntax == | == OTL Syntax == | ||
Line 14: | Line 14: | ||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie1| Source | [[EventSource]] | [[Term]] | - | [1] | One or more event sources to be terminated. The order is insignificant.}} | + | {{TableRowPropertie1| Source | [[Extensions.EventHandling.EventSource|EventSource]] | [[Term]] | - | [1] | One or more event sources to be terminated. The order is insignificant.}} |
|} | |} | ||
Line 30: | Line 30: | ||
== See also == | == See also == | ||
− | [[WaitForEvent]] | + | [[Extensions.EventHandling.WaitForEvent|WaitForEvent]] |
Revision as of 04:57, 15 February 2016
Classification
Name | CloseEventSource |
Short Description | Stops the event processing all specified sources |
Class | Action |
Extension | OTX DiagCom extension |
Group | EventHandling related actions |
Exceptions | - |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
EventHandling.CloseEventSource(EventSource source);
Description
The OTX CloseEventSource activity stops the event processing all specified sources.
Properties
Name | Data Type | Class | Default | Cardinality | Description |
Source | EventSource | Term | - | [1] | One or more event sources to be terminated. The order is insignificant. |
OTL Examples
Integer Variable1 = 0;
EventHandling.Event Event1;
EventHandling.EventSource EventSource1;
EventSource1 = EventHandling.MonitorChangeEventSource(Variable1);
Variable1 = Variable1 + 1;
EventHandling.WaitForEvent({EventSource1}, Event1);
EventHandling.CloseEventSource({EventSource1});