Extensions.DiagCom.StopRepeatedExecution

From emotive
Revision as of 10:00, 4 February 2015 by Tl (talk | contribs)
Jump to navigation Jump to search

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