Class Completable<VALUE>

java.lang.Object
panda.std.reactive.Completable<VALUE>
Type Parameters:
VALUE - type of value to store
All Implemented Interfaces:
Publisher<Completable<VALUE>,VALUE>

public class Completable<VALUE> extends Object implements Publisher<Completable<VALUE>,VALUE>
Observable container for value that could be computed in the future. This container is similar to CompletableFuture, but without the concurrency layer.