Class MoreExecutors
- java.lang.Object
- 
- com.google.common.util.concurrent.MoreExecutors
 
- 
 @GwtCompatible(emulated=true) public final class MoreExecutors extends java.lang.Object Factory and utility methods forExecutor,ExecutorService, andThreadFactory.- Since:
- 3.0
- Author:
- Eric Fellheimer, Kyle Littlefield, Justin Mahoney
 
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static voidaddDelayedShutdownHook(java.util.concurrent.ExecutorService service, long terminationTimeout, java.util.concurrent.TimeUnit timeUnit)Add a shutdown hook to wait for thread completion in the givenservice.static java.util.concurrent.ExecutordirectExecutor()Returns anExecutorthat runs each task in the thread that invokesexecute, as inThreadPoolExecutor.CallerRunsPolicy.static java.util.concurrent.ExecutorServicegetExitingExecutorService(java.util.concurrent.ThreadPoolExecutor executor)Converts the given ThreadPoolExecutor into an ExecutorService that exits when the application is complete.static java.util.concurrent.ExecutorServicegetExitingExecutorService(java.util.concurrent.ThreadPoolExecutor executor, long terminationTimeout, java.util.concurrent.TimeUnit timeUnit)Converts the given ThreadPoolExecutor into an ExecutorService that exits when the application is complete.static java.util.concurrent.ScheduledExecutorServicegetExitingScheduledExecutorService(java.util.concurrent.ScheduledThreadPoolExecutor executor)Converts the given ScheduledThreadPoolExecutor into a ScheduledExecutorService that exits when the application is complete.static java.util.concurrent.ScheduledExecutorServicegetExitingScheduledExecutorService(java.util.concurrent.ScheduledThreadPoolExecutor executor, long terminationTimeout, java.util.concurrent.TimeUnit timeUnit)Converts the given ScheduledThreadPoolExecutor into a ScheduledExecutorService that exits when the application is complete.static ListeningExecutorServicelisteningDecorator(java.util.concurrent.ExecutorService delegate)Creates anExecutorServicewhosesubmitandinvokeAllmethods submitListenableFutureTaskinstances to the given delegate executor.static ListeningScheduledExecutorServicelisteningDecorator(java.util.concurrent.ScheduledExecutorService delegate)Creates aScheduledExecutorServicewhosesubmitandinvokeAllmethods submitListenableFutureTaskinstances to the given delegate executor.static ListeningExecutorServicenewDirectExecutorService()Creates an executor service that runs each task in the thread that invokesexecute/submit, as inThreadPoolExecutor.CallerRunsPolicy.static java.util.concurrent.ExecutornewSequentialExecutor(java.util.concurrent.Executor delegate)Returns anExecutorthat runs each task executed sequentially, such that no two tasks are running concurrently.static java.util.concurrent.ThreadFactoryplatformThreadFactory()Returns a default thread factory used to create new threads.static booleanshutdownAndAwaitTermination(java.util.concurrent.ExecutorService service, long timeout, java.util.concurrent.TimeUnit unit)Shuts down the given executor service gradually, first disabling new submissions and later, if necessary, cancelling remaining tasks.
 
- 
- 
- 
Method Detail- 
getExitingExecutorService@GwtIncompatible public static java.util.concurrent.ExecutorService getExitingExecutorService(java.util.concurrent.ThreadPoolExecutor executor, long terminationTimeout, java.util.concurrent.TimeUnit timeUnit) Converts the given ThreadPoolExecutor into an ExecutorService that exits when the application is complete. It does so by using daemon threads and adding a shutdown hook to wait for their completion.This is mainly for fixed thread pools. See Executors.newFixedThreadPool(int).- Parameters:
- executor- the executor to modify to make sure it exits when the application is finished
- terminationTimeout- how long to wait for the executor to finish before terminating the JVM
- timeUnit- unit of time for the time parameter
- Returns:
- an unmodifiable version of the input which will not hang the JVM
 
 - 
getExitingExecutorService@GwtIncompatible public static java.util.concurrent.ExecutorService getExitingExecutorService(java.util.concurrent.ThreadPoolExecutor executor) Converts the given ThreadPoolExecutor into an ExecutorService that exits when the application is complete. It does so by using daemon threads and adding a shutdown hook to wait for their completion.This method waits 120 seconds before continuing with JVM termination, even if the executor has not finished its work. This is mainly for fixed thread pools. See Executors.newFixedThreadPool(int).- Parameters:
- executor- the executor to modify to make sure it exits when the application is finished
- Returns:
- an unmodifiable version of the input which will not hang the JVM
 
 - 
getExitingScheduledExecutorService@GwtIncompatible public static java.util.concurrent.ScheduledExecutorService getExitingScheduledExecutorService(java.util.concurrent.ScheduledThreadPoolExecutor executor, long terminationTimeout, java.util.concurrent.TimeUnit timeUnit) Converts the given ScheduledThreadPoolExecutor into a ScheduledExecutorService that exits when the application is complete. It does so by using daemon threads and adding a shutdown hook to wait for their completion.This is mainly for fixed thread pools. See Executors.newScheduledThreadPool(int).- Parameters:
- executor- the executor to modify to make sure it exits when the application is finished
- terminationTimeout- how long to wait for the executor to finish before terminating the JVM
- timeUnit- unit of time for the time parameter
- Returns:
- an unmodifiable version of the input which will not hang the JVM
 
 - 
getExitingScheduledExecutorService@GwtIncompatible public static java.util.concurrent.ScheduledExecutorService getExitingScheduledExecutorService(java.util.concurrent.ScheduledThreadPoolExecutor executor) Converts the given ScheduledThreadPoolExecutor into a ScheduledExecutorService that exits when the application is complete. It does so by using daemon threads and adding a shutdown hook to wait for their completion.This method waits 120 seconds before continuing with JVM termination, even if the executor has not finished its work. This is mainly for fixed thread pools. See Executors.newScheduledThreadPool(int).- Parameters:
- executor- the executor to modify to make sure it exits when the application is finished
- Returns:
- an unmodifiable version of the input which will not hang the JVM
 
 - 
addDelayedShutdownHook@GwtIncompatible public static void addDelayedShutdownHook(java.util.concurrent.ExecutorService service, long terminationTimeout, java.util.concurrent.TimeUnit timeUnit) Add a shutdown hook to wait for thread completion in the givenservice. This is useful if the given service uses daemon threads, and we want to keep the JVM from exiting immediately on shutdown, instead giving these daemon threads a chance to terminate normally.- Parameters:
- service- ExecutorService which uses daemon threads
- terminationTimeout- how long to wait for the executor to finish before terminating the JVM
- timeUnit- unit of time for the time parameter
 
 - 
newDirectExecutorService@GwtIncompatible public static ListeningExecutorService newDirectExecutorService() Creates an executor service that runs each task in the thread that invokesexecute/submit, as inThreadPoolExecutor.CallerRunsPolicy. This applies both to individually submitted tasks and to collections of tasks submitted viainvokeAllorinvokeAny. In the latter case, tasks will run serially on the calling thread. Tasks are run to completion before aFutureis returned to the caller (unless the executor has been shutdown).Although all tasks are immediately executed in the thread that submitted the task, this ExecutorServiceimposes a small locking overhead on each task submission in order to implement shutdown and termination behavior.The implementation deviates from the ExecutorServicespecification with regards to theshutdownNowmethod. First, "best-effort" with regards to canceling running tasks is implemented as "no-effort". No interrupts or other attempts are made to stop threads executing tasks. Second, the returned list will always be empty, as any submitted task is considered to have started execution. This applies also to tasks given toinvokeAllorinvokeAnywhich are pending serial execution, even the subset of the tasks that have not yet started execution. It is unclear from theExecutorServicespecification if these should be included, and it's much easier to implement the interpretation that they not be. Finally, a call toshutdownorshutdownNowmay result in concurrent calls toinvokeAll/invokeAnythrowing RejectedExecutionException, although a subset of the tasks may already have been executed.- Since:
- 18.0 (present as MoreExecutors.sameThreadExecutor() since 10.0)
 
 - 
directExecutorpublic static java.util.concurrent.Executor directExecutor() Returns anExecutorthat runs each task in the thread that invokesexecute, as inThreadPoolExecutor.CallerRunsPolicy.This executor is appropriate for tasks that are lightweight and not deeply chained. Inappropriate directExecutorusage can cause problems, and these problems can be difficult to reproduce because they depend on timing. For example:- When a ListenableFuturelistener is registered to run underdirectExecutor, the listener can execute in any of three possible threads:- When a thread attaches a listener to a ListenableFuturethat's already complete, the listener runs immediately in that thread.
- When a thread attaches a listener to a ListenableFuturethat's incomplete and theListenableFuturelater completes normally, the listener runs in the thread that completes theListenableFuture.
- When a listener is attached to a ListenableFutureand theListenableFuturegets cancelled, the listener runs immediately in the thread that cancelled theFuture.
 
- When a thread attaches a listener to a 
- If many tasks will be triggered by the same event, one heavyweight task may delay other
       tasks -- even tasks that are not themselves directExecutortasks.
- If many such tasks are chained together (such as with future.transform(...).transform(...).transform(...)....), they may overflow the stack. (In simple cases, callers can avoid this by registering all tasks with the samenewSequentialExecutor(java.util.concurrent.Executor)wrapper arounddirectExecutor(). More complex cases may require using thread pools or making deeper changes.)
- If an exception propagates out of a Runnable, it is not necessarily seen by anyUncaughtExceptionHandlerfor the thread. For example, if the callback passed toFutures.addCallback(com.google.common.util.concurrent.ListenableFuture<V>, com.google.common.util.concurrent.FutureCallback<? super V>, java.util.concurrent.Executor)throws an exception, that exception will be typically be logged by theListenableFutureimplementation, even if the thread is configured to do something different. In other cases, no code will catch the exception, and it may terminate whichever thread happens to trigger the execution.
 ListenableFuturelisteners, should take care not to do so while holding a lock. Additionally, as a further line of defense, prefer not to perform any locking inside a task that will be run underdirectExecutor: Not only might the wait for a lock be long, but if the running thread was holding a lock, the listener may deadlock or break lock isolation.This instance is equivalent to: final class DirectExecutor implements Executor { public void execute(Runnable r) { r.run(); } }This should be preferred to newDirectExecutorService()because implementing theExecutorServicesubinterface necessitates significant performance overhead.- Since:
- 18.0
 
- When a 
 - 
newSequentialExecutor@GwtIncompatible public static java.util.concurrent.Executor newSequentialExecutor(java.util.concurrent.Executor delegate) Returns anExecutorthat runs each task executed sequentially, such that no two tasks are running concurrently.executed tasks have a happens-before order as defined in the Java Language Specification. Tasks execute with the same happens-before order that the function calls to `execute()`that submitted those tasks had.The executor uses delegatein order toexecuteeach task in turn, and does not create any threads of its own.After execution begins on a thread from the delegateExecutor, tasks are polled and executed from a task queue until there are no more tasks. The thread will not be released until there are no more tasks to run.If a task is submitted while a thread is executing tasks from the task queue, the thread will not be released until that submitted task is also complete. If a task is interrupted while a task is running: - execution will not stop until the task queue is empty.
- tasks will begin execution with the thread marked as not interrupted - any interruption applies only to the task that was running at the point of interruption.
- if the thread was interrupted before the SequentialExecutor's worker begins execution,
       the interrupt will be restored to the thread after it completes so that its delegateExecutor may process the interrupt.
- subtasks are run with the thread uninterrupted and interrupts received during execution of a task are ignored.
 RuntimeExceptions thrown by tasks are simply logged and the executor keeps trucking. If anErroris thrown, the error will propagate and execution will stop until the next time a task is submitted.When an Erroris thrown by an executed task, previously submitted tasks may never run. An attempt will be made to restart execution on the next call toexecute. If thedelegatehas begun to reject execution, the previously submitted tasks may never run, despite not throwing a RejectedExecutionException synchronously with the call toexecute. If this behaviour is problematic, use an Executor with a single thread (e.g.Executors.newSingleThreadExecutor()).- Since:
- 23.3 (since 23.1 as sequentialExecutor)
 
 - 
listeningDecorator@GwtIncompatible public static ListeningExecutorService listeningDecorator(java.util.concurrent.ExecutorService delegate) Creates anExecutorServicewhosesubmitandinvokeAllmethods submitListenableFutureTaskinstances to the given delegate executor. Those methods, as well asexecuteandinvokeAny, are implemented in terms of calls todelegate.execute. All other methods are forwarded unchanged to the delegate. This implies that the returnedListeningExecutorServicenever calls the delegate'ssubmit,invokeAll, andinvokeAnymethods, so any special handling of tasks must be implemented in the delegate'sexecutemethod or by wrapping the returnedListeningExecutorService.If the delegate executor was already an instance of ListeningExecutorService, it is returned untouched, and the rest of this documentation does not apply.- Since:
- 10.0
 
 - 
listeningDecorator@GwtIncompatible public static ListeningScheduledExecutorService listeningDecorator(java.util.concurrent.ScheduledExecutorService delegate) Creates aScheduledExecutorServicewhosesubmitandinvokeAllmethods submitListenableFutureTaskinstances to the given delegate executor. Those methods, as well asexecuteandinvokeAny, are implemented in terms of calls todelegate.execute. All other methods are forwarded unchanged to the delegate. This implies that the returnedListeningScheduledExecutorServicenever calls the delegate'ssubmit,invokeAll, andinvokeAnymethods, so any special handling of tasks must be implemented in the delegate'sexecutemethod or by wrapping the returnedListeningScheduledExecutorService.If the delegate executor was already an instance of ListeningScheduledExecutorService, it is returned untouched, and the rest of this documentation does not apply.- Since:
- 10.0
 
 - 
platformThreadFactory@GwtIncompatible public static java.util.concurrent.ThreadFactory platformThreadFactory() Returns a default thread factory used to create new threads.When running on AppEngine with access to AppEngine legacy APIs, this method returns ThreadManager.currentRequestThreadFactory(). Otherwise, it returnsExecutors.defaultThreadFactory().- Since:
- 14.0
 
 - 
shutdownAndAwaitTermination@CanIgnoreReturnValue @GwtIncompatible public static boolean shutdownAndAwaitTermination(java.util.concurrent.ExecutorService service, long timeout, java.util.concurrent.TimeUnit unit) Shuts down the given executor service gradually, first disabling new submissions and later, if necessary, cancelling remaining tasks.The method takes the following steps: - calls ExecutorService.shutdown(), disabling acceptance of new submitted tasks.
- awaits executor service termination for half of the specified timeout.
- if the timeout expires, it calls ExecutorService.shutdownNow(), cancelling pending tasks and interrupting running tasks.
- awaits executor service termination for the other half of the specified timeout.
 If, at any step of the process, the calling thread is interrupted, the method calls ExecutorService.shutdownNow()and returns.- Parameters:
- service- the- ExecutorServiceto shut down
- timeout- the maximum time to wait for the- ExecutorServiceto terminate
- unit- the time unit of the timeout argument
- Returns:
- trueif the- ExecutorServicewas terminated successfully,- falseif the call timed out or was interrupted
- Since:
- 17.0
 
- calls 
 
- 
 
-