Class UnmodifiableFuture<T>

All Implemented Interfaces:
CompletionStage<T>, Future<T>

public class UnmodifiableFuture<T>
extends EventLoopCheckingFuture<T>
A CompletableFuture which prevents the caller from completing it. An attempt to call any of the following methods will trigger an UnsupportedOperationException: Also, cancel(boolean) will do nothing but returning whether cancelled or not.