Difference between revisions of "Extensions.DiagCom.StopRepeatedExecution"

From emotive
Jump to navigation Jump to search
Line 1: Line 1:
[[Category:DiagCom]]
+
{{DISPLAYTITLE:OTX '''StopRepeatedExecution '''}}[[Category:DiagCom]]
 
== Classification ==
 
== Classification ==
{{ClassificationActivity | StopRepeatedExecution | Stop executing repeatedly a [[DiagService]] | [[Action]] | [[DiagCom|OTX DiagCom extension]] | [[DiagService related actions]] | [[InvalidStateException]] | - }}
+
{{ClassificationActivity | StopRepeatedExecution | Stop executing repeatedly a [[Core.DataTypes.ComplexDataType.DiagService|DiagService]] | [[Action]] | [[Extensions.DiagCom|OTX DiagCom extension]] | [[DiagService related actions]] | [[Extensions.DiagCom.InvalidStateException|InvalidStateException]] | - }}
  
 
== OTL Syntax ==
 
== OTL Syntax ==
Line 9: Line 9:
  
 
== Description ==
 
== Description ==
The OTX '''StopRepeatedExecution''' action be used to stop executed repeatedly a [[DiagService]].
+
The OTX '''StopRepeatedExecution''' action be used to stop executed repeatedly a [[Core.DataTypes.ComplexDataType.DiagService|DiagService]].
  
 
== Properties ==
 
== Properties ==
 
{| {{TableHeader}}
 
{| {{TableHeader}}
 
{{TableRowPropertiesHeader}}
 
{{TableRowPropertiesHeader}}
{{TableRowPropertie1| DiagService | [[DiagService ]] | [[Term]] | - | [1] | The service which shall be executed repeatedly. }}
+
{{TableRowPropertie1| DiagService | [[Core.DataTypes.ComplexDataType.DiagService|DiagService ]] | [[Term]] | - | [1] | The service which shall be executed repeatedly. }}
 
|}
 
|}
  
Line 30: Line 30:
  
 
== See also ==
 
== See also ==
[[GetComChannel]] <br/>
+
[[Extensions.DiagCom.GetComChannel|GetComChannel]] <br/>
[[CreateDiagServiceByName]] <br/>
+
[[Extensions.DiagCom.CreateDiagServiceByName|CreateDiagServiceByName]] <br/>
[[StartRepeatedExecution]] <br/>
+
[[Extensions.DiagCom.StartRepeatedExecution|StartRepeatedExecution]] <br/>
[[SetRepetitionTime]] <br/>
+
[[Extensions.DiagCom.SetRepetitionTime|SetRepetitionTime]] <br/>
[[GetRepetitionTime]]
+
[[Extensions.DiagCom.GetRepetitionTime|GetRepetitionTime]]

Revision as of 08:24, 5 February 2016

Classification

Name StopRepeatedExecution
Short Description Stop executing repeatedly a DiagService
Class Action
Extension OTX DiagCom extension
Group DiagService related actions
Exceptions InvalidStateException
Checker Rules -
Standard Compliant Yes

OTL Syntax

DiagCom.StopRepeatedExecution(DiagServiceTerm);

Description

The OTX StopRepeatedExecution action be used to stop executed repeatedly a DiagService.

Properties

Name Data Type Class Default Cardinality Description
DiagService DiagService Term - [1] The service which shall be executed repeatedly.

OTL Examples

DiagCom.ComChannel myComCannel;
DiagCom.DiagService myDiagService;

myComCannel = DiagCom.GetComChannel("LL_AllEmissRelatUDSSyste", "", false);
myDiagService = DiagCom.CreateDiagServiceByName(myComCannel, "DiagnServi_ReadDataByIdentActuaTestStatu");
DiagCom.StartRepeatedExecution(myDiagService);
DiagCom.ExecuteDiagService(myDiagService, {}, {}, false, false);
DiagCom.StopRepeatedExecution(myDiagService);

See also

GetComChannel
CreateDiagServiceByName
StartRepeatedExecution
SetRepetitionTime
GetRepetitionTime