E - public interface InternalCompletableFuture<E> extends ICompletableFuture<E>
ICompletableFuture with more functionality like getting
 the result without needing to deal with checked exceptions.| Modifier and Type | Method and Description | 
|---|---|
boolean | 
complete(Object value)
Completes this future. 
 | 
E | 
join()
Waits for this future to complete. 
 | 
andThen, andThenE join()
boolean complete(Object value)
value - the value to complete this future with.true if this invocation caused this InternalCompletableFuture to complete, else falseCopyright © 2020 Hazelcast, Inc.. All Rights Reserved.