ReactiveSubjectTimeControlExtension<T> extension
- on
Methods
-
buffer(
Stream closing) → ReactiveSubject< List< T> > -
Available on ReactiveSubject<
Buffers values from the source ReactiveSubject until the closing stream emits.T> , provided by the ReactiveSubjectTimeControlExtension extension -
debounceTime(
Duration duration) → ReactiveSubject< T> -
Available on ReactiveSubject<
Emits items from the source ReactiveSubject only after a specified duration has passed without the ReactiveSubject emitting any other items.T> , provided by the ReactiveSubjectTimeControlExtension extension -
throttleTime(
Duration duration) → ReactiveSubject< T> -
Available on ReactiveSubject<
Emits the first item emitted by the source ReactiveSubject in each time window of a specified duration.T> , provided by the ReactiveSubjectTimeControlExtension extension