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
IOExceptionT get() throws InterruptedException, ExecutionException, IOException
T get(long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException, IOException
boolean isCancelled()
throws IOException
IOExceptionboolean isDone()
throws IOException
IOExceptionCopyright © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.