Do some PMD-driven cleanups
[fonbot.git] / src / ro / ieval / fonbot / ExecutableRunnable.java
index 13addac0a5a9e7bd238fcecc68189591f396b67f..4011338c4d2e9de175c50b3e1b3590f1e37a9db3 100644 (file)
@@ -41,33 +41,33 @@ import android.os.SystemClock;
  */
 abstract class ExecutableRunnable implements Runnable {
        /** Executor used to execute instances of this class */
-       private static final ScheduledExecutorService executor = Executors.newSingleThreadScheduledExecutor();
+       private static final ScheduledExecutorService EXECUTORS = Executors.newSingleThreadScheduledExecutor();
        /** Queue containing <code>ExecutableRunnable</code>s that should be retried */
-       private static final Queue<ExecutableRunnable> retryPendingTasks = new LinkedList<ExecutableRunnable>();
+       private static final Queue<ExecutableRunnable> RETRY_PENDING_TASKS = new LinkedList<ExecutableRunnable>();
        /** Minimum interval between task retries, in milliseconds */
-       private static final long retryInterval = 30000;
+       private static final long RETRY_INTERVAL = 30000;
        /** {@link SystemClock#elapsedRealtime()} time of last successful call to {@link #retryTasks()} */
        private static long lastRetry = 0;
-       /** True if a retryTasks run is already scheduled on {@link #executor} */
+       /** True if a retryTasks run is already scheduled on {@link #EXECUTORS} */
        private static volatile boolean retryIsScheduled = false;
 
        /** Run all tasks that should be retried */
        public static final void retryTasks(){
-               if(!retryIsScheduled && lastRetry+retryInterval>SystemClock.elapsedRealtime()){
+               if(!retryIsScheduled && lastRetry+RETRY_INTERVAL>SystemClock.elapsedRealtime()){
                        retryIsScheduled = true;
-                       executor.schedule(new Runnable() {
+                       EXECUTORS.schedule(new Runnable() {
                                @Override
                                public void run() {
                                        retryTasks();
                                        retryIsScheduled = false;
                                }
-                       }, retryInterval, TimeUnit.MILLISECONDS);
+                       }, RETRY_INTERVAL, TimeUnit.MILLISECONDS);
                        return;
                }
-               synchronized(retryPendingTasks){
-                       for(ExecutableRunnable task : retryPendingTasks)
-                               executor.execute(task);
-                       retryPendingTasks.clear();
+               synchronized(RETRY_PENDING_TASKS){
+                       for(ExecutableRunnable task : RETRY_PENDING_TASKS)
+                               EXECUTORS.execute(task);
+                       RETRY_PENDING_TASKS.clear();
                }
                lastRetry=SystemClock.elapsedRealtime();
        }
@@ -75,13 +75,13 @@ abstract class ExecutableRunnable implements Runnable {
        /** Execute this <code>ExecutableRunnable</code> */
        public final void execute(){
                retryTasks();
-               executor.execute(this);
+               EXECUTORS.execute(this);
        }
 
        /** Mark this <code>ExecutableRunnable</code> as needing to be retried later */
        protected final void retry(){
-               synchronized(retryPendingTasks){
-                       retryPendingTasks.add(this);
+               synchronized(RETRY_PENDING_TASKS){
+                       RETRY_PENDING_TASKS.add(this);
                }
        }
 }
This page took 0.011949 seconds and 4 git commands to generate.