class documentation

class Linear(Retriable):

View In Hierarchy

A retry policy where the delay between retries grows linearly.

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

Undocumented

max_retries: int =

Undocumented