RepeatUntilBuilder

data class RepeatUntilBuilder<RESULT : Any>(resultClass: Class<RESULT>, inputClasses: List<Class<out Any>> = emptyList(), maxIterations: Int = DEFAULT_MAX_ITERATIONS) : WorkFlowBuilderWithInput

Java friendly builder for RepeatUntil workflow.

Constructors

Link copied to clipboard
constructor(resultClass: Class<RESULT>, inputClasses: List<Class<out Any>> = emptyList(), maxIterations: Int = DEFAULT_MAX_ITERATIONS)

Types

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard

Define the task to be repeated until an acceptable result is achieved.

Link copied to clipboard
open override fun withInput(inputClass: Class<out Any>): RepeatUntilBuilder<RESULT>

Specify an input class for this workflow agent.

Link copied to clipboard