Expand description

Retry support for aws-hyper

The actual retry policy implementation will likely be replaced with the CRT implementation once the bindings exist. This implementation is intended to be correct but not especially long lasting.

Components:

  • Standard: Top level manager, intended to be associated with a Client. Its sole purpose in life is to create a RetryHandler for individual requests.
  • RetryHandler: A request-scoped retry policy, backed by request-local state and shared state contained within Standard.
  • Config: Static configuration (max attempts, max backoff etc.)

Structs

Retry Policy Configuration

RetryHandler

Manage retries for a service

Traits

A policy instantiator.