Searched refs:timeoutSeconds (Results 1 – 3 of 3) sorted by relevance
484 long timeoutSeconds = transaction.getTimeout(TimeUnit.SECONDS);486 mTimeoutFuture = mTimeoutExecutor.schedule(onTimeoutFunc, timeoutSeconds,
364 long timeoutSeconds) throws Exception { in waitForAsync() argument379 }).get(timeoutSeconds, TimeUnit.SECONDS); in waitForAsync() argument
792 public static void waitUntil(String message, BooleanSupplier condition, int timeoutSeconds) { in waitUntil() argument793 final long timeout = System.currentTimeMillis() + (timeoutSeconds * 1000L); in waitUntil()1230 public static void retryUntil(BooleanSupplier checker, String message, long timeoutSeconds) { in retryUntil() argument1231 final long timeOut = System.currentTimeMillis() + timeoutSeconds * 1000; in retryUntil()