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