ConstantBackoffSettings: { delay?: ITimeSpan; jitter?: number | null }

IMPORT_PATH: "@daiso-tech/core/backoff-policies"

Type declaration

  • Optionaldelay?: ITimeSpan
    import { TimeSpan } from "@daiso-tech/core/time-span";

    TimeSpan.fromSeconds(1)
  • Optionaljitter?: number | null

    You can pass jitter value to ensure the backoff will not execute at the same time. If you pas null you can disable the jitrter.

    0.5