Difference between revisions of "Extensions.DiagCom.StopRepeatedExecution"
Jump to navigation
Jump to search
(Created page with "Category:DiagCom == Classification == {{ClassificationActivity | StopRepeatedExecution | Stop executing repeatedly a DiagService | Action | DiagCom|OTX DiagCom e...") |
|||
Line 26: | Line 26: | ||
ExecuteDiagService(myDiagService, new RequestParameters<RequestParameter>() { { "Param_RecorDataIdent", "Spare Part Number" } }, new ResponseParameters<ResponseParameter>() { { "Resp_ReadDataByIdentECUIdent.Param_DataRecor.Param_SparePartNumbe", mySparePartNumberStringVariable } }, false, false); | ExecuteDiagService(myDiagService, new RequestParameters<RequestParameter>() { { "Param_RecorDataIdent", "Spare Part Number" } }, new ResponseParameters<ResponseParameter>() { { "Resp_ReadDataByIdentECUIdent.Param_DataRecor.Param_SparePartNumbe", mySparePartNumberStringVariable } }, false, false); | ||
− | + | StopRepeatedExecution(myDiagService); | |
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 04:17, 15 July 2014
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 |
Pseudo-Code Syntax
StopRepeatedExecution(DiagService myDiagService);
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. |
Examples
ComChannel myComCannel = GetComChannel("LL_AirbaUDS", "", false);
DiagService myDiagService = CreateDiagServiceByName(myComChannel, "DiagnServi_ReadDataByIdentECUIdent");
StartRepeatedExecution(myDiagService);
ExecuteDiagService(myDiagService, new RequestParameters<RequestParameter>() { { "Param_RecorDataIdent", "Spare Part Number" } }, new ResponseParameters<ResponseParameter>() { { "Resp_ReadDataByIdentECUIdent.Param_DataRecor.Param_SparePartNumbe", mySparePartNumberStringVariable } }, false, false);
StopRepeatedExecution(myDiagService);
See also
GetComChannel
CreateDiagServiceByName
StartRepeatedExecution
SetRepetitionTime
GetRepetitionTime