Interface Single<T>

Type Parameters:
T - item type
All Superinterfaces:
Awaitable<T>, CompletionStage<T>, Flow.Publisher<T>, Subscribable<T>
All Known Implementing Classes:
CompletionSingle

public interface Single<T> extends Subscribable<T>, CompletionStage<T>, Awaitable<T>
Represents a Flow.Publisher that may: signal one item then completes, complete without an item or signal an error.
See Also: