类 FutureAdapter<V>
- java.lang.Object
-
- com.alibaba.dubbo.rpc.protocol.dubbo.FutureAdapter<V>
-
-
构造器概要
构造器 构造器 说明 FutureAdapter(ResponseFuture future)
-
-
-
构造器详细资料
-
FutureAdapter
public FutureAdapter(ResponseFuture future)
-
-
方法详细资料
-
getFuture
public ResponseFuture getFuture()
-
isCancelled
public boolean isCancelled()
- 指定者:
isCancelled
在接口中Future<V>
-
get
public V get() throws InterruptedException, ExecutionException
- 指定者:
get
在接口中Future<V>
- 抛出:
InterruptedException
ExecutionException
-
get
public V get(long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException
- 指定者:
get
在接口中Future<V>
- 抛出:
InterruptedException
ExecutionException
TimeoutException
-
-