vikalp07.hashnode.devFlow Services-Exit(Like Break):The EXIT flow step allows you to exit the entire flow service or a single flow step. You specify whether you want to exit from: *Exit $loop(would exit entire loop if BAD credit found) *Exit $parent(would skip the BAD credit partner and continue) *Exi...Aug 21, 2023·2 min read
vikalp07.hashnode.devFlow Services-Sequence Continue:Applications of Sequence: Use the Sequence as Try and Catch block : Sequence (Main)(Success) --Sequence(Try)(Failure) --Sequence(Catch)(Done) WmPublic package’s pub.flow:getLastError: *Obtains detailed information about the last exception that wa...Aug 14, 2023·1 min read
vikalp07.hashnode.devFlow Services-Sequence(Try-Catch)-You use the SEQUENCE step to build a set of steps that you want to treat as a group. Specify one of the following exit conditions: Exit the sequence when a child step fails. Use this condition when you want to ensure that all child steps are complete...Aug 7, 2023·2 min read
vikalp07.hashnode.devFlow Services-Loop (For-Loop):The LOOP step repeats a sequence of child steps once for each element in an array that you specify. Property Description Input array Required. Specifies the input a...Jul 31, 2023·1 min read