Package-level declarations
Types
Link copied to clipboard
interface FortressApiService
Link copied to clipboard
Link copied to clipboard
object HttpClient
Link copied to clipboard
object RetryConfiguration
Link copied to clipboard
object RetryUtils
Functions
Link copied to clipboard
suspend fun <T> retryWithBackoff(maxRetries: Int = RetryConfiguration.MAX_RETRIES, initialDelayMillis: Long = RetryConfiguration.INITIAL_DELAY_MS, maxDelayMillis: Long = RetryConfiguration.MAX_DELAY_MS, exponentialBase: Double = RetryConfiguration.EXPONENTIAL_BASE, shouldRetry: (Exception) -> Boolean = { true }, operationName: String? = null, block: suspend () -> T): T