Uses of Class
org.reactfx.util.Experimental
-
Packages that use Experimental Package Description org.reactfx org.reactfx.collection -
-
Uses of Experimental in org.reactfx
Classes in org.reactfx with annotations of type Experimental Modifier and Type Interface Description interface
Suspender<S extends Suspendable>
Suspender is an object capable of suspending another suspendable object.class
SuspenderBase<O,T,S extends Suspendable>
interface
SuspenderStream<T,S extends Suspendable>
An event stream that suspends a suspendable object during emission.Methods in org.reactfx with annotations of type Experimental Modifier and Type Method Description default <S extends Suspendable>
SuspenderStream<T,S>EventStream. suspenderOf(S suspendable)
Returns an event stream that emits the same events as this event stream, but before each emission, suspends the given Suspendable and unsuspends it after the emission has completed. -
Uses of Experimental in org.reactfx.collection
Classes in org.reactfx.collection with annotations of type Experimental Modifier and Type Class Description (package private) class
ListRangeReduction<T>
Methods in org.reactfx.collection with annotations of type Experimental Modifier and Type Method Description default <T> Val<T>
LiveList. collapse(java.util.function.Function<? super java.util.List<E>,? extends T> f)
static <E,T>
Val<T>LiveList. collapse(javafx.collections.ObservableList<? extends E> list, java.util.function.Function<? super java.util.List<E>,? extends T> f)
default <T> Val<T>
LiveList. collapseDynamic(javafx.beans.value.ObservableValue<? extends java.util.function.Function<? super java.util.List<E>,? extends T>> f)
static <E,T>
Val<T>LiveList. collapseDynamic(javafx.collections.ObservableList<? extends E> list, javafx.beans.value.ObservableValue<? extends java.util.function.Function<? super java.util.List<E>,? extends T>> f)
default Val<E>
LiveList. reduceRange(javafx.beans.value.ObservableValue<javafx.scene.control.IndexRange> range, java.util.function.BinaryOperator<E> reduction)
static <E> Val<E>
LiveList. reduceRange(javafx.collections.ObservableList<E> list, javafx.beans.value.ObservableValue<javafx.scene.control.IndexRange> range, java.util.function.BinaryOperator<E> reduction)
-