org.infinispan.util.concurrent
Interface FutureListener<T>

All Known Implementing Classes:
DistributedExecutionCompletionService.QueueingListener

public interface FutureListener<T>

A listener that is called back when a future is done. FutureListener instances are attached to NotifyingFutures by passing them in to NotifyingFuture.attachListener(FutureListener)

Note that the futureDone(Future) callback is invoked when the future completes, regardless of how the future completes (i.e., normally, due to an exception, or cancelled}. As such, implementations should check the future passed in by calling future.get().

Since:
4.0
Author:
Manik Surtani

Method Summary
 void futureDone(Future<T> future)
           
 

Method Detail

futureDone

void futureDone(Future<T> future)

-->

Copyright © 2012 JBoss, a division of Red Hat. All Rights Reserved.