Module retry::delay[][src]

Expand description

Different types of delay for retryable operations.

Structs

Each retry increases the delay since the last exponentially.

Each retry uses a delay which is the sum of the two previous delays.

Each retry uses a fixed delay.

Each retry happens immediately without any delay.

Each retry uses a duration randomly chosen from a range. (need random feature)

Functions

Apply full random jitter to a duration. (need random feature)