Difference between revisions of "Extensions.EventHandling.CloseEventSource"
Jump to navigation
Jump to search
Line 30: | Line 30: | ||
== See also == | == See also == | ||
− | [[Extensions.EventHandling. | + | [[Extensions.EventHandling.Sleep|Sleep]] |
Revision as of 04:39, 12 January 2017
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});