Class CompletedStage<T>

java.lang.Object
io.quarkus.qute.CompletedStage<T>
All Implemented Interfaces:
CompletionStage<T>, Supplier<T>

public final class CompletedStage<T> extends Object implements CompletionStage<T>, Supplier<T>
Internal representation of a completed computation, an optimized replacement for CompletableFuture.completedFuture(Object).

Note that this is not a full implementation of CompletionStage - it just throws UnsupportedOperationException for methods that are not used internally. Therefore, it should not be used outside the Qute API.