StreamComputedExtension<T> extension
- on
-
- Stream<
T>
- Stream<
Properties
- prev → T
-
Available on Stream<
Returns the value of this stream during the last run of the current computation.T> , provided by the StreamComputedExtension extensionno setter - use → T
-
Available on Stream<
Returns the current value of this stream and subscribes to it.T> , provided by the StreamComputedExtension extensionno setter
Methods
-
prevOr(
T or) → T -
Available on Stream<
As prev, but returnsT> , provided by the StreamComputedExtension extensionor
instead of throwing NoValueException. -
react(
void onData(T), [Function? onError]) → void -
Available on Stream<
Subscribes to this stream in a non-memoized manner.T> , provided by the StreamComputedExtension extension -
useOr(
T value) → T -
Available on Stream<
As use, but returnsT> , provided by the StreamComputedExtension extensionvalue
instead of throwing NoValueException.