Skip to main content
Module

x/mess/deps.ts>RetryOptions

🌀 A modern, broker-agnostic, distributed message queue for deno
Latest
interface RetryOptions
import { type RetryOptions } from "https://deno.land/x/mess@0.0.1-pre.3/deps.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.