# Functions
NewTimingOutExponentialBackoff creates a new TimingOutExponentialBackoff with seconds as TimeUnit.
# Structs
ConstantBackoff defines a retry policy in which in we retry up to the provided maximum number of retries (MaxRetries).
ExponentialBackoff defines a retry policy in which in we exponentially retry up to the provided maximum number of retries (MaxRetries).
TimingOutExponentialBackoff defines a retry policy in which we exponentially retry up to the provided maximum duration (Timeout).
# Interfaces
Policy defines an "iterator"-style of interface for retry policies.