RetryBlock

typealias RetryBlock<T> = suspend (Int) -> T

Represents a block to be retried, taking an integer parameter (the retry count) and returning a value of type T.

Since

1.0.0