← klaro.services
SentinelConsentraKlaroShieldBundlesPricing
Retries & reliability

Fixed backoff for a strict internal SLA

Exponential backoff is the default -- switch to fixed delay when you need predictable retry timing instead of growing gaps.

← All recipes
import { Klaro, retries } from "@klaroshield/sdk";

const klaro = new Klaro().use(
  retries({ max: 3, backoff: "fixed", baseDelayMs: 250 })
);

Checked against the shipped @klaroshield/sdk API. Full docs at klaro.services/klaroshield/docs.

More in Retries & reliability

Custom retry predicate