Uses of Interface
org.reactfx.CompletionStageStream
-
Packages that use CompletionStageStream Package Description org.reactfx -
-
Uses of CompletionStageStream in org.reactfx
Classes in org.reactfx that implement CompletionStageStream Modifier and Type Class Description (package private) class
MappedToCompletionStageStream<T,U>
Methods in org.reactfx that return CompletionStageStream Modifier and Type Method Description default <U> CompletionStageStream<U>
EventStream. mapToCompletionStage(java.util.function.Function<? super T,java.util.concurrent.CompletionStage<U>> f)
Similar toEventStream.map(Function)
, but the returned stream is aCompletionStageStream
, which can be used to await the results of asynchronous computation.default <U> CompletionStageStream<U>
EventStream. supplyCompletionStage(java.util.function.Supplier<java.util.concurrent.CompletionStage<U>> f)
Similar toEventStream.supply(Supplier)
, but the returned stream is aCompletionStageStream
, which can be used to await the results of asynchronous computation.
-