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 interfaceSuspender<S extends Suspendable>Suspender is an object capable of suspending another suspendable object.classSuspenderBase<O,T,S extends Suspendable>interfaceSuspenderStream<T,S extends Suspendable>An event stream that suspends a suspendable object during emission.(package private) classSuspenderStreamImpl<T,S extends Suspendable>Subinterfaces of Suspendable in org.reactfx Modifier and Type Interface Description interfaceSuspendableEventStream<T>An event stream whose emission of events can be suspended temporarily.interfaceToggleObservable boolean that changes value when suspended.Classes in org.reactfx that implement Suspendable Modifier and Type Class Description (package private) classAbstractReducibleEventStream<T>(package private) classAccumulativeEventStream<T,A>(package private) classBiSuspendable(package private) classForgetfulEventStream<T>(package private) classMultiSuspendable(package private) classPausableEventStream<T>(package private) classReducibleEventStream<T>(package private) classSuppressibleEventStream<T>classSuspendableBase<O,T,A>(package private) classSuspendableBoolean(package private) classSuspendableEventStreamBase<T,A>classSuspendableNoObservable boolean value that is normallyfalse, but istruewhen suspended.classSuspendableYesObservable boolean value that is normallytrue, but isfalsewhen suspended.(package private) classToggleFromValFields in org.reactfx declared as Suspendable Modifier and Type Field Description private SuspendableBiSuspendable. s1private SuspendableBiSuspendable. s2private SSuspenderBase. suspendableprivate Suspendable[]MultiSuspendable. suspendablesprivate SuspendableToggleFromVal. suspenderMethods 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 SuspendableSuspendable. 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 SuspendableSuspendable. combine(Suspendable... suspendables)Returns a Suspendable that combines all the given Suspendables into one.static ToggleToggle. 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 interfaceSuspendableList<E>Classes in org.reactfx.collection that implement Suspendable Modifier and Type Class Description (package private) classSuspendableListWrapper<E> -
Uses of Suspendable in org.reactfx.value
Subinterfaces of Suspendable in org.reactfx.value Modifier and Type Interface Description interfaceSuspendableVal<T>Observable value whose invalidation and change notifications can be temporarily suspended.interfaceSuspendableVar<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) classSuspendableValWrapper<T>(package private) classSuspendableVarWrapper<T>
-