Package io.microkt.kontainers.runner

Provides an interface to be implemented by any platform capable of running Kontainers.

Types

Link copied to clipboard
interface KontainerRunner

Defines methods to be implemented by any platform capable of running Kontainers.

Link copied to clipboard
class RetryOperation<T>

Functions

Link copied to clipboard
suspend fun <T> retryOperation(retries: Int = 100, initialDelay: Long = 0, initialIntervalMilli: Long = 5000, maxDelay: Long = 20000, operation: suspend RetryOperation<T>.() -> T): T