class documentation

class Exponential(Retriable):

View In Hierarchy

A retry policy where the delay between retries grows exponentially.

Method calculate_delay Undocumented
Method should_retry Undocumented
Class Variable base_delay Undocumented
Class Variable factor Undocumented
Class Variable max_delay Undocumented
Class Variable max_retries Undocumented
def calculate_delay(self, attempt: int) -> float:
def should_retry(self, attempt: int) -> bool:
base_delay: float =

Undocumented

factor: float =

Undocumented

max_delay: float =

Undocumented

max_retries: int =

Undocumented