@plust/datasleuth - v0.2.0
    Preparing search index...

    Interface RepeatUntilOptions

    Options for the repeatUntil step

    interface RepeatUntilOptions {
        maxIterations?: number;
        throwOnMaxIterations?: boolean;
        continueOnError?: boolean;
        retry?: { maxRetries?: number; baseDelay?: number };
    }
    Index

    Properties

    maxIterations?: number

    Maximum number of iterations

    throwOnMaxIterations?: boolean

    Whether to throw an error if max iterations is reached

    continueOnError?: boolean

    Whether to continue if a step fails during iteration

    retry?: { maxRetries?: number; baseDelay?: number }

    Retry configuration

    Type declaration

    • OptionalmaxRetries?: number

      Maximum number of retries for the whole RepeatUntil step

    • OptionalbaseDelay?: number

      Base delay between retries in ms