Expand description

The types of backoff strategies that are supported

Structs

  • Exponential backoff. The delay will double each time.
  • Fixed backoff. The delay wont change between attempts.
  • Linear backoff. The delay will scale linearly with the number of attempts.
  • No backoff. This will make the future be retried immediately without any delay in between attempts.

Traits