com.atlassian.confluence.rest.client
Class PromisingExecutorService

java.lang.Object
  extended by com.atlassian.confluence.rest.client.PromisingExecutorService
All Implemented Interfaces:
java.util.concurrent.Executor, java.util.concurrent.ExecutorService

public class PromisingExecutorService
extends java.lang.Object
implements java.util.concurrent.ExecutorService

An executor service that returns Promises rather than Futures.


Constructor Summary
PromisingExecutorService(com.google.common.util.concurrent.ListeningExecutorService service)
           
 
Method Summary
 boolean awaitTermination(long timeout, java.util.concurrent.TimeUnit unit)
           
 void execute(java.lang.Runnable command)
           
<T> java.util.List
invokeAll(java.util.Collection<? extends java.util.concurrent.Callable<T>> tasks)
           
<T> java.util.List
invokeAll(java.util.Collection<? extends java.util.concurrent.Callable<T>> tasks, long timeout, java.util.concurrent.TimeUnit unit)
           
<T> T
invokeAny(java.util.Collection<? extends java.util.concurrent.Callable<T>> tasks)
           
<T> T
invokeAny(java.util.Collection<? extends java.util.concurrent.Callable<T>> tasks, long timeout, java.util.concurrent.TimeUnit unit)
           
 boolean isShutdown()
           
 boolean isTerminated()
           
 void shutdown()
           
 java.util.List<java.lang.Runnable> shutdownNow()
           
<T> com.atlassian.util.concurrent.Promise<T>
submit(java.util.concurrent.Callable<T> task)
           
 com.atlassian.util.concurrent.Promise<?> submit(java.lang.Runnable task)
           
<T> com.atlassian.util.concurrent.Promise<T>
submit(java.lang.Runnable task, T result)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PromisingExecutorService

public PromisingExecutorService(com.google.common.util.concurrent.ListeningExecutorService service)
Method Detail

shutdown

public void shutdown()
Specified by:
shutdown in interface java.util.concurrent.ExecutorService

shutdownNow

public java.util.List<java.lang.Runnable> shutdownNow()
Specified by:
shutdownNow in interface java.util.concurrent.ExecutorService

isShutdown

public boolean isShutdown()
Specified by:
isShutdown in interface java.util.concurrent.ExecutorService

isTerminated

public boolean isTerminated()
Specified by:
isTerminated in interface java.util.concurrent.ExecutorService

awaitTermination

public boolean awaitTermination(long timeout,
                                java.util.concurrent.TimeUnit unit)
                         throws java.lang.InterruptedException
Specified by:
awaitTermination in interface java.util.concurrent.ExecutorService
Throws:
java.lang.InterruptedException

submit

public <T> com.atlassian.util.concurrent.Promise<T> submit(java.util.concurrent.Callable<T> task)
Specified by:
submit in interface java.util.concurrent.ExecutorService

submit

public <T> com.atlassian.util.concurrent.Promise<T> submit(java.lang.Runnable task,
                                                           T result)
Specified by:
submit in interface java.util.concurrent.ExecutorService

submit

public com.atlassian.util.concurrent.Promise<?> submit(java.lang.Runnable task)
Specified by:
submit in interface java.util.concurrent.ExecutorService

invokeAll

public <T> java.util.List invokeAll(java.util.Collection<? extends java.util.concurrent.Callable<T>> tasks)
                         throws java.lang.InterruptedException
Specified by:
invokeAll in interface java.util.concurrent.ExecutorService
Throws:
java.lang.InterruptedException

invokeAll

public <T> java.util.List invokeAll(java.util.Collection<? extends java.util.concurrent.Callable<T>> tasks,
                                    long timeout,
                                    java.util.concurrent.TimeUnit unit)
                         throws java.lang.InterruptedException
Specified by:
invokeAll in interface java.util.concurrent.ExecutorService
Throws:
java.lang.InterruptedException

invokeAny

public <T> T invokeAny(java.util.Collection<? extends java.util.concurrent.Callable<T>> tasks)
            throws java.lang.InterruptedException,
                   java.util.concurrent.ExecutionException
Specified by:
invokeAny in interface java.util.concurrent.ExecutorService
Throws:
java.lang.InterruptedException
java.util.concurrent.ExecutionException

invokeAny

public <T> T invokeAny(java.util.Collection<? extends java.util.concurrent.Callable<T>> tasks,
                       long timeout,
                       java.util.concurrent.TimeUnit unit)
            throws java.lang.InterruptedException,
                   java.util.concurrent.ExecutionException,
                   java.util.concurrent.TimeoutException
Specified by:
invokeAny in interface java.util.concurrent.ExecutorService
Throws:
java.lang.InterruptedException
java.util.concurrent.ExecutionException
java.util.concurrent.TimeoutException

execute

public void execute(java.lang.Runnable command)
Specified by:
execute in interface java.util.concurrent.Executor


Copyright © 2003-2014 Atlassian. All Rights Reserved.