Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/capi/deps/std/async.ts>RetryOptions

[WIP] A framework for crafting interactions with Substrate chains
Latest
interface RetryOptions
import { type RetryOptions } from "https://deno.land/x/capi@v0.1.1-beta.1/deps/std/async.ts";

Properties

optional
multiplier: number

How much to backoff after each retry. This is 2 by default.

optional
maxTimeout: number

The maximum milliseconds between retries. This is 60000 by default.

optional
maxAttempts: number

The maximum amount of retries until failure. This is 5 by default.

optional
minTimeout: number

The inital and minimum amount of milliseconds between retries. This is 1000 by default.