Uses of Interface
org.knowm.xchange.utils.retries.IPredicate
-
Packages that use IPredicate Package Description org.knowm.xchange.examples.core.utils org.knowm.xchange.utils.retries -
-
Uses of IPredicate in org.knowm.xchange.examples.core.utils
Fields in org.knowm.xchange.examples.core.utils declared as IPredicate Modifier and Type Field Description static IPredicate<Exception>
RetriesDemo. TOO_FREQUENT_REQUESTS
-
Uses of IPredicate in org.knowm.xchange.utils.retries
Methods in org.knowm.xchange.utils.retries with parameters of type IPredicate Modifier and Type Method Description static <V> V
Retries. callWithRetries(int nAttempts, int initialRetrySec, Callable<V> action, IPredicate<Exception> retryableException)
Deprecated.Allows a client to attempt a call and retry a finite amount of times if the exception thrown is the right kind.
-