Class BasicFuture<T>

java.lang.Object
org.apache.http.concurrent.BasicFuture<T>
Type Parameters:
T - the future result type of an asynchronous operation.
All Implemented Interfaces:
Future<T>, Cancellable

public class BasicFuture<T> extends Object implements Future<T>, Cancellable
Basic implementation of the Future interface. BasicFuture can be put into a completed state by invoking any of the following methods: cancel(), failed(Exception), or completed(Object).
Since:
4.2