V - public class DelegatingFuture<V> extends Object implements InternalCompletableFuture<V>
InternalCompletableFuture implementation that delegates the real logic to an underlying
 InternalCompletableFuture and decorates it with additional behavior:
 | Constructor and Description | 
|---|
DelegatingFuture(InternalCompletableFuture future,
                SerializationService serializationService)  | 
DelegatingFuture(InternalCompletableFuture future,
                SerializationService serializationService,
                V result)
Creates a DelegatingFuture 
 | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
andThen(ExecutionCallback<V> callback)
Registers a callback that will run after the future is completed. 
 | 
void | 
andThen(ExecutionCallback<V> callback,
       Executor executor)
Registers a callback that will run with the provided executor after the future is completed. 
 | 
boolean | 
cancel(boolean mayInterruptIfRunning)  | 
boolean | 
complete(Object value)
Completes this future. 
 | 
V | 
get()  | 
V | 
get(long timeout,
   TimeUnit unit)  | 
protected ICompletableFuture | 
getFuture()  | 
boolean | 
isCancelled()  | 
boolean | 
isDone()  | 
V | 
join()
Waits for this future to complete. 
 | 
protected void | 
setError(Throwable error)  | 
public DelegatingFuture(InternalCompletableFuture future, SerializationService serializationService)
public DelegatingFuture(InternalCompletableFuture future, SerializationService serializationService, V result)
future - the underlying future to delegate to.serializationService - the SerializationServiceresult - the resuling value to be used when the underlying future completes. So no matter the return
                             value of that future, the result will be returned by the DelegatingFuture. A null
                             value means that the value of the underlying future should be used.public final V get() throws InterruptedException, ExecutionException
get in interface Future<V>InterruptedExceptionExecutionExceptionpublic final V get(long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException
get in interface Future<V>InterruptedExceptionExecutionExceptionTimeoutExceptionpublic boolean cancel(boolean mayInterruptIfRunning)
public boolean isCancelled()
isCancelled in interface Future<V>public boolean complete(Object value)
InternalCompletableFuturecomplete in interface InternalCompletableFuture<V>value - the value to complete this future with.true if this invocation caused this InternalCompletableFuture to complete, else falseprotected void setError(Throwable error)
protected ICompletableFuture getFuture()
public V join()
InternalCompletableFuturejoin in interface InternalCompletableFuture<V>public void andThen(ExecutionCallback<V> callback)
ICompletableFutureandThen in interface ICompletableFuture<V>callback - the callback to executepublic void andThen(ExecutionCallback<V> callback, Executor executor)
ICompletableFutureandThen in interface ICompletableFuture<V>callback - the callback to executeexecutor - the executor in which the callback will be runCopyright © 2018 Hazelcast, Inc.. All Rights Reserved.