retryAction

suspend fun <T> retryAction(times: Int = 0, delay: Long = DefaultAiutaTryOnRetryPolicies.retryDelay, action: suspend () -> T): T

Will execute action and additional times attempts

Can throw exception, because in last attempt we will execute pure action