Class FutureAdapter<T,s>

java.lang.Object
org.springframework.util.concurrent.FutureAdapter<T,s>
Type Parameters:
T - the type of this Future
s - the type of the adaptee's Future
All Implemented Interfaces:
Future<T>

@Deprecated(since="6.0") public abstract class FutureAdapter<T,s> extends Object implements Future<T>
Deprecated.
as of 6.0, with no concrete replacement
Abstract class that adapts a Future parameterized over s into a Future parameterized over T. All methods are delegated to the adaptee, where get() and get(long, TimeUnit) call adapt(Object) on the adaptee's result.
since:
4.0
Author:
Arjen Poutsma