Interface LoopControllerFlowNodeConfiguration.Builder

    • Method Detail

      • continueCondition

        LoopControllerFlowNodeConfiguration.Builder continueCondition​(FlowCondition continueCondition)

        Specifies the condition that determines when the flow exits the DoWhile loop. The loop executes until this condition evaluates to true.

        Parameters:
        continueCondition - Specifies the condition that determines when the flow exits the DoWhile loop. The loop executes until this condition evaluates to true.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • maxIterations

        LoopControllerFlowNodeConfiguration.Builder maxIterations​(Integer maxIterations)

        Specifies the maximum number of times the DoWhile loop can iterate before the flow exits the loop.

        Parameters:
        maxIterations - Specifies the maximum number of times the DoWhile loop can iterate before the flow exits the loop.
        Returns:
        Returns a reference to this object so that method calls can be chained together.