Searched refs:terminalException (Results 1 – 5 of 5) sorted by relevance
52 public VoidRetry terminalException(Function<Throwable, Boolean> terminalChecker) { in terminalException() method in VoidRetry53 mRetry.terminalException(terminalChecker); in terminalException()
73 public Retry<E> terminalException(Function<Throwable, Boolean> terminalChecker) { in terminalException() method in Retry74 mPoll.terminalException(terminalChecker); in terminalException()
280 public Poll<E> terminalException(Function<Throwable, Boolean> terminalChecker) { in terminalException() method in Poll296 terminalException((e) -> terminalChecker.get()); in terminal()
93 () -> Retry.logic(valueTester::get).terminalException(e -> true).run()); in run_terminalException_throwsException()102 () -> Retry.logic(valueTester::throwOrNot).terminalException(e -> true).run()); in runVoid_terminalException_throwsException()110 assertThat(Retry.logic(valueTester::get).terminalException(e -> false).run()) in run_nonTerminalException_returnsValue()119 Retry.logic(valueTester::throwOrNot).terminalException(e -> false).run(); in runVoid_nonTerminalException_runs()
442 .terminalException(c -> true) in terminalException_hasTerminalException_exitsImmediately()454 .terminalException(c -> false) in terminalException_hasNonTerminalException_doesNotExitImmediately()