Uses of Interface
org.reactfx.Suspendable
-
Packages that use Suspendable Package Description org.reactfx org.reactfx.collection org.reactfx.value -
-
Uses of Suspendable in org.reactfx
Classes in org.reactfx with type parameters of type Suspendable 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.(package private) class
SuspenderStreamImpl<T,S extends Suspendable>
Subinterfaces of Suspendable in org.reactfx Modifier and Type Interface Description interface
SuspendableEventStream<T>
An event stream whose emission of events can be suspended temporarily.interface
Toggle
Observable boolean that changes value when suspended.Classes in org.reactfx that implement Suspendable Modifier and Type Class Description (package private) class
AbstractReducibleEventStream<T>
(package private) class
AccumulativeEventStream<T,A>
(package private) class
BiSuspendable
(package private) class
ForgetfulEventStream<T>
(package private) class
MultiSuspendable
(package private) class
PausableEventStream<T>
(package private) class
ReducibleEventStream<T>
(package private) class
SuppressibleEventStream<T>
class
SuspendableBase<O,T,A>
(package private) class
SuspendableBoolean
(package private) class
SuspendableEventStreamBase<T,A>
class
SuspendableNo
Observable boolean value that is normallyfalse
, but istrue
when suspended.class
SuspendableYes
Observable boolean value that is normallytrue
, but isfalse
when suspended.(package private) class
ToggleFromVal
Fields in org.reactfx declared as Suspendable Modifier and Type Field Description private Suspendable
BiSuspendable. s1
private Suspendable
BiSuspendable. s2
private S
SuspenderBase. suspendable
private Suspendable[]
MultiSuspendable. suspendables
private Suspendable
ToggleFromVal. suspender
Methods in org.reactfx with type parameters of type Suspendable 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.Methods in org.reactfx that return Suspendable Modifier and Type Method Description static Suspendable
Suspendable. combine(Suspendable... suspendables)
Returns a Suspendable that combines all the given Suspendables into one.Methods in org.reactfx with parameters of type Suspendable Modifier and Type Method Description static Suspendable
Suspendable. combine(Suspendable... suspendables)
Returns a Suspendable that combines all the given Suspendables into one.static Toggle
Toggle. from(javafx.beans.value.ObservableValue<java.lang.Boolean> obs, Suspendable suspender)
Creates a Toggle view of an observable boolean and a Suspendable whose suspension causes the boolean value to switch.Constructors in org.reactfx with parameters of type Suspendable Constructor Description BiSuspendable(Suspendable s1, Suspendable s2)
MultiSuspendable(Suspendable... suspendables)
ToggleFromVal(Val<java.lang.Boolean> obs, Suspendable suspender)
-
Uses of Suspendable in org.reactfx.collection
Subinterfaces of Suspendable in org.reactfx.collection Modifier and Type Interface Description interface
SuspendableList<E>
Classes in org.reactfx.collection that implement Suspendable Modifier and Type Class Description (package private) class
SuspendableListWrapper<E>
-
Uses of Suspendable in org.reactfx.value
Subinterfaces of Suspendable in org.reactfx.value Modifier and Type Interface Description interface
SuspendableVal<T>
Observable value whose invalidation and change notifications can be temporarily suspended.interface
SuspendableVar<T>
Writable value whose invalidation and change notifications can be temporarily suspended.Classes in org.reactfx.value that implement Suspendable Modifier and Type Class Description (package private) class
SuspendableValWrapper<T>
(package private) class
SuspendableVarWrapper<T>
-