ValueConnectableNotReplayStreamExtensions<T> extension
Extension that converts a Stream into NotReplayValueConnectableStream and NotReplayValueStream.
- on
-
- Stream<
T>
- Stream<
Methods
-
publishValueNotReplay(
T seedValue, {bool sync = true}) → NotReplayValueConnectableStream< T> -
Available on Stream<
Convert the current Stream into a ConnectableStream that can be listened to multiple times. It will not begin emitting items from the original Stream until theT> , provided by the ValueConnectableNotReplayStreamExtensions extensionconnect
method is invoked. -
Available on Stream<
Convert the current Stream into a new Stream that can be listened to multiple times. It will automatically begin emitting items when first listened to, and shut down when no listeners remain.T> , provided by the ValueConnectableNotReplayStreamExtensions extension