Backoff Policies
object BackoffPolicies
Predefined BackoffPolicy configurations for common scenarios.
Use these to avoid tuning by hand for typical needs. You can always pass a custom BackoffPolicy when necessary.
Properties
Link copied to clipboard
Balanced exponential backoff suitable for many network APIs. Roughly doubles up to 30s and stops around 2 minutes.
Link copied to clipboard
Gentle linear(ish) backoff for UIs that need frequent updates without spamming servers. Lower multiplier approximates linear growth over many attempts.
Link copied to clipboard
Quick polling tuned for short-lived availability (e.g., compliance status) with ~20s cap.
Link copied to clipboard
Very aggressive and short-lived for debugging or tests. Not recommended for production.