com.ning.http.client
Interface FutureImpl<V>

Type Parameters:
V - Type of the value that will be returned.
All Superinterfaces:
Future<V>
All Known Implementing Classes:
JDKFuture, NettyResponseFuture

public interface FutureImpl<V>
extends Future<V>

Extended Future


Method Summary
 void abort(Throwable t)
           
 void done(Callable callable)
          Execute a Callable and if there is no exception, mark this Future as done and release the internal lock.
 
Methods inherited from interface java.util.concurrent.Future
cancel, get, get, isCancelled, isDone
 

Method Detail

done

void done(Callable callable)
Execute a Callable and if there is no exception, mark this Future as done and release the internal lock.

Parameters:
callable -

abort

void abort(Throwable t)


Copyright © 2010. All Rights Reserved.