接口 ListenableFuture<V>
-
- 所有超级接口:
Future<V>
- 所有已知实现类:
ListenableFutureTask
public interface ListenableFuture<V> extends Future<V>
AFuturethat accepts completion listeners. Each listener has an associated executor, and it is invoked using this executor once the future's computation is complete. If the computation has already completed when the listener is added, the listener will execute immediately.See the Guava User Guide article on
ListenableFuture.Purpose
Most commonly,
ListenableFutureis used as an input to another derivedFuture, as inFutures.allAsList. Many such methods are impossible to implement efficiently without listener support.It is possible to call
addListenerdirectly, but this is uncommon because theRunnableinterface does not provide direct access to theFutureresult. (Users who want such access may preferFutures.addCallback.) Still, directaddListenercalls are occasionally useful:final String name = ...; inFlight.add(name); ListenableFuture<Result> future = service.query(name); future.addListener(new Runnable() { public void run() { processedCount.incrementAndGet(); inFlight.remove(name); lastProcessed.set(name); logger.info("Done with {0}", name); } }, executor);How to get an instance
Developers are encouraged to return
ListenableFuturefrom their methods so that users can take advantages of the utilities built atop the class. The way that they will createListenableFutureinstances depends on how they currently createFutureinstances:- If they are returned from an
ExecutorService, convert that service to aListeningExecutorService, usually by callingMoreExecutors.listeningDecorator. (Custom executors may find it more convenient to useListenableFutureTaskdirectly.) - If they are manually filled in by a call to
FutureTask.set(V)or a similar method, create aSettableFutureinstead. (Users with more complex needs may preferAbstractFuture.)
Occasionally, an API will return a plain
Futureand it will be impossible to change the return type. For this case, we provide a more expensive workaround inJdkFutureAdapters. However, when possible, it is more efficient and reliable to create aListenableFuturedirectly.
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 voidaddListener(Runnable listener)voidaddListener(Runnable listener, Executor executor)Registers a listener to be run on the given executor.
-
-
-
方法详细资料
-
addListener
void addListener(Runnable listener, Executor executor)
Registers a listener to be run on the given executor. The listener will run when theFuture's computation is complete or, if the computation is already complete, immediately.There is no guaranteed ordering of execution of listeners, but any listener added through this method is guaranteed to be called once the computation is complete.
Exceptions thrown by a listener will be propagated up to the executor. Any exception thrown during
Executor.execute(e.g., aRejectedExecutionExceptionor an exception thrown by inline execution) will be caught and logged.Note: For fast, lightweight listeners that would be safe to execute in any thread, consider
MoreExecutors#sameThreadExecutor. For heavier listeners,sameThreadExecutor()carries some caveats. For example, the listener may run on an unpredictable or undesirable thread:- If this
Futureis done at the timeaddListeneris called,addListenerwill execute the listener inline. - If this
Futureis not yet done,addListenerwill schedule the listener to be run by the thread that completes thisFuture, which may be an internal system thread such as an RPC network thread.
Also note that, regardless of which thread executes the
sameThreadExecutor()listener, all other registered but unexecuted listeners are prevented from running during its execution, even if those listeners are to run in other executors.This is the most general listener interface. For common operations performed using listeners, see
Futures. For a simplified but general listener interface, seeaddCallback().- 参数:
listener- the listener to run when the computation is completeexecutor- the executor to run the listener in- 抛出:
NullPointerException- if the executor or listener was nullRejectedExecutionException- if we tried to execute the listener immediately but the executor rejected it.
- If this
-
addListener
void addListener(Runnable listener)
-
-