com.atlassian.bamboo.executor
Class RetryingTaskExecutor<T>

java.lang.Object
  extended by com.atlassian.bamboo.executor.RetryingTaskExecutor<T>

public class RetryingTaskExecutor<T>
extends java.lang.Object

Helper class that allows you to easily run a task that is likely to fail multiple times. It will attempt to rerun the task using a backing off algorithm or constant time. By default backing off is used with 1000ms initial delay and 10 max retries. Delays are capped at 60s per run. The last attempt will be at least 4 minutes after the first call.


Field Summary
static int DEFAULT_BACK_OFF_MULTIPLIER
           
static int DEFAULT_INITIAL_RETRY_DELAY
           
static int DEFAULT_MAX_RETRIES
           
static long DEFAULT_MAX_RETRY_DELAY
           
protected  T objectToReturn
           
 
Constructor Summary
RetryingTaskExecutor()
           
RetryingTaskExecutor(int maxRetries, boolean rethrowLastException)
           
RetryingTaskExecutor(long initialRetryDelay, int maxRetries)
           
RetryingTaskExecutor(long initialRetryDelay, int maxRetries, boolean useExponentialBackOff)
           
RetryingTaskExecutor(long initialRetryDelay, long maxRetryDelay, int maxRetries, long backOffMultiplier, boolean useExponentialBackOff, boolean rethrowLastException)
           
 
Method Summary
 T getObjectToReturn()
           
 void runTask(java.util.concurrent.Callable<T> task)
           
 void runTask(java.lang.String taskName, java.util.concurrent.Callable<T> task)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

DEFAULT_MAX_RETRY_DELAY

public static final long DEFAULT_MAX_RETRY_DELAY
See Also:
Constant Field Values

DEFAULT_MAX_RETRIES

public static final int DEFAULT_MAX_RETRIES
See Also:
Constant Field Values

DEFAULT_INITIAL_RETRY_DELAY

public static final int DEFAULT_INITIAL_RETRY_DELAY
See Also:
Constant Field Values

DEFAULT_BACK_OFF_MULTIPLIER

public static final int DEFAULT_BACK_OFF_MULTIPLIER
See Also:
Constant Field Values

objectToReturn

protected volatile T objectToReturn
Constructor Detail

RetryingTaskExecutor

public RetryingTaskExecutor(long initialRetryDelay,
                            long maxRetryDelay,
                            int maxRetries,
                            long backOffMultiplier,
                            boolean useExponentialBackOff,
                            boolean rethrowLastException)

RetryingTaskExecutor

public RetryingTaskExecutor(long initialRetryDelay,
                            int maxRetries)

RetryingTaskExecutor

public RetryingTaskExecutor(long initialRetryDelay,
                            int maxRetries,
                            boolean useExponentialBackOff)

RetryingTaskExecutor

public RetryingTaskExecutor(int maxRetries,
                            boolean rethrowLastException)

RetryingTaskExecutor

public RetryingTaskExecutor()
Method Detail

runTask

public void runTask(java.util.concurrent.Callable<T> task)

runTask

public void runTask(java.lang.String taskName,
                    java.util.concurrent.Callable<T> task)

getObjectToReturn

public T getObjectToReturn()


Copyright © 2011 Atlassian. All Rights Reserved.