``` public fun <T> tryUntilOk(maxRetries: Lo...
# getting-started
a
Copy code
public fun <T> tryUntilOk(maxRetries: Long = 10, timeoutMs: Long = 0, r: Callable<T>): T? { ... }
val json = ExecutionUtil.tryUntilOk<JsonNode>(maxRetries = 5, timeoutMs = 1000) { ->
                getServerList(config);
};