Uses of Interface
com.atlassian.bamboo.utils.BambooCallables.NotThrowing
-
Packages that use BambooCallables.NotThrowing Package Description com.atlassian.bamboo.util com.atlassian.bamboo.utils -
-
Uses of BambooCallables.NotThrowing in com.atlassian.bamboo.util
Methods in com.atlassian.bamboo.util with parameters of type BambooCallables.NotThrowing Modifier and Type Method Description static <T> T
BambooProfilingUtils. withUtilTimerStack(@NotNull String message, BambooCallables.NotThrowing<T> callable)
Deprecated.since 6.10 useTimers
directly -
Uses of BambooCallables.NotThrowing in com.atlassian.bamboo.utils
Methods in com.atlassian.bamboo.utils that return BambooCallables.NotThrowing Modifier and Type Method Description static <V> BambooCallables.NotThrowing<V>
BambooCallables. notThrowing(BambooCallables.ThrowingX<V,? extends Exception,? extends Exception,? extends Exception> callable)
Returns a wrapped callable which does not throw checked exceptions.Methods in com.atlassian.bamboo.utils with parameters of type BambooCallables.NotThrowing Modifier and Type Method Description static <V> V
BambooCallables. retryOnException(BambooCallables.NotThrowing<V> callable, Predicate<RuntimeException> exceptionPredicate)
Utility to re-attempt to execute a callable if it fails with a known exception.static <V> V
BambooCallables. retryOnException(BambooCallables.NotThrowing<V> callable, Predicate<RuntimeException> exceptionPredicate, int maxRetryCount)
Utility to re-attempt to execute a callable if it fails with a known exception up to maxRetryCount times.
-