Difference between revisions of "Extensions.ExternalServiceProvider.IsServiceExecutionFinishedEvent"
Jump to navigation
Jump to search
(Created by Ngoc Tran.) |
(Edited by Ngoc Tran.) |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
− | {{DISPLAYTITLE: ''' | + | {{DISPLAYTITLE: '''IsServiceExecutionFinishedEvent'''}}[[Category:ExternalServiceProvider]] |
== Classification == | == Classification == | ||
− | {{ClassificationActivity | | + | {{ClassificationActivity | IsServiceExecutionFinishedEvent | Tests if the given event indicates the termination of a [[Extensions.ExternalServiceProvider.Service|Service]] | [[Term]] | [[Extensions.ExternalServiceProvider|OTX ExternalServiceProvider extension]] | [[Extensions.ExternalServiceProvider#Terms|ExternalServiceProvider related terms]] | | }} |
== OTL Syntax == | == OTL Syntax == | ||
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | BooleanTerm ExternalServiceProvider.IsServiceExecutionFinishedEvent(EventTerm event, ServiceTerm serviceHandle); | + | otx:BooleanTerm ExternalServiceProvider.IsServiceExecutionFinishedEvent(event:EventTerm event, esp:ServiceTerm serviceHandle); |
</syntaxhighlight> | </syntaxhighlight> | ||
Latest revision as of 10:55, 14 November 2019
Classification
Name | IsServiceExecutionFinishedEvent |
Short Description | Tests if the given event indicates the termination of a Service |
Class | Term |
Extension | OTX ExternalServiceProvider extension |
Group | ExternalServiceProvider related terms |
Exceptions | |
Checker Rules | |
Standard Compliant | Yes |
OTL Syntax
otx:BooleanTerm ExternalServiceProvider.IsServiceExecutionFinishedEvent(event:EventTerm event, esp:ServiceTerm serviceHandle);
Description
IsServiceExecutionFinishedEvent is a BooleanTerm that tests if the given event indicates the termination of a Service. Events that indicate termination of a Service are fired by a ServiceExecutionFinishedEventSource. ServiceExecutionFinishedEvents will be fired at normal termination of service and also abnormal termination by the TerminateService action.
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
otx:Boolean | Tests if the given event indicates the termination of a Service |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
event | event:Event | Term | - | [1..1] | Represents the Event whose type will be tested. |
serviceHandle | esp:Service | Term | - | [0..1] | The events of this Service instance will be tested. |