Skip to main content

handleCycleManagerError

Short summary

This method handles the resume function of the cycle manager. Should be called befor all other handles.

Parameters

NameTypeCommentKind
resumeBOOLif true, will acknowledge error and return to previous stepinput

Code

Declaration

METHOD PROTECTED handleCycleManagerError
VAR_INPUT
(*if true, will acknowledge error and return to previous step*)
resume :BOOL;
END_VAR

Implementation

IF(resume)THEN
THIS^.acknowledge();
END_IF