Package org.reactfx
Interface AwaitingEventStream<T>
- All Superinterfaces:
EventStream<T>
,Observable<Consumer<? super T>>
- All Known Implementing Classes:
Await
,AwaitLatest
,SuccessionReducingStream
,ThenAccumulateForStream
An event stream that indicates whether there is a pending event that can
be expected to be emitted in the future.
A stream may indicate a pending event while it is awaiting a timer or completion of an asynchronous task.
-
Property Summary
PropertiesTypePropertyDescriptionjavafx.beans.value.ObservableBooleanValue
Indicates whether there is a pending event that will be emitted by this stream in the (near) future. -
Method Summary
Modifier and TypeMethodDescriptionboolean
javafx.beans.value.ObservableBooleanValue
Indicates whether there is a pending event that will be emitted by this stream in the (near) future.Methods inherited from interface org.reactfx.EventStream
accumulate, accumulate, accumulate, accumulateBetween, accumulateBetween, accumulateUntilLater, accumulateUntilLater, accumulateUntilLater, accumulateUntilLater, accumulateWhen, accumulateWhen, accumulative, accumulative, cast, conditionOn, conditionOnShowing, distinct, emitBothOnEach, emitOn, emitOnEach, feedTo, feedTo, filter, filter, filterMap, filterMap, flatMap, forgetful, fork, guardedBy, hook, latestN, map, mapToCompletionStage, mapToTask, onRecurseAccumulate, onRecurseAccumulate, onRecurseQueue, onRecurseReduce, onRecurseRetainLatest, or, pausable, pauseWhen, pin, queueBetween, queueUntilLater, queueUntilLater, reduceBetween, reduceSuccessions, reduceSuccessions, reduceSuccessions, reduceSuccessions, reduceSuccessions, reduceSuccessions, reduceUntilLater, reduceUntilLater, reduceWhen, reducible, repeatOn, retainLatestBetween, retainLatestUntilLater, retainLatestUntilLater, retainLatestWhen, splitBy, subscribe, subscribeFor, subscribeForOne, successionEnds, successionEnds, supply, supply, supplyCompletionStage, supplyTask, suppressible, suppressWhen, suspenderOf, thenAccumulateFor, thenAccumulateFor, thenAccumulateFor, thenAccumulateFor, thenIgnoreFor, thenIgnoreFor, thenReduceFor, thenReduceFor, thenRetainLatestFor, thenRetainLatestFor, threadBridge, threadBridgeFromFx, threadBridgeToFx, toBinding, withDefaultEvent
Methods inherited from interface org.reactfx.Observable
addObserver, observe, removeObserver
-
Property Details
-
pending
javafx.beans.value.ObservableBooleanValue pendingPropertyIndicates whether there is a pending event that will be emitted by this stream in the (near) future. This may mean that an event has occurred that causes this stream to emit an event with some delay, e.g. waiting for a timer or completion of an asynchronous task.- See Also:
-
-
Method Details
-
pendingProperty
javafx.beans.value.ObservableBooleanValue pendingProperty()Indicates whether there is a pending event that will be emitted by this stream in the (near) future. This may mean that an event has occurred that causes this stream to emit an event with some delay, e.g. waiting for a timer or completion of an asynchronous task.- Returns:
- the
pending
property
-
isPending
boolean isPending()
-