public interface RemoteFuture<T> extends Remote
Remote
interface declaring the API of Future
but also
declaring that each methods throws IOException
in order to be
compatible with Remote
and Exporter
. Of course, this
means that this interface can not extend Future
!boolean cancel(boolean mayInterruptIfRunning) throws IOException
IOException
T get() throws InterruptedException, ExecutionException, IOException
T get(long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException, IOException
boolean isCancelled() throws IOException
IOException
boolean isDone() throws IOException
IOException
Copyright © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.