ThrottleOperator<T> extension
- on
-
- Observable<
T>
- Observable<
Methods
-
throttle<
R> (DurationSelector< T, R> durationSelector, {bool leading = true, bool trailing = true}) → Observable<T> -
Available on Observable<
Emits a value from this Observable, then ignores values for the duration until the Observable returned byT> , provided by the ThrottleOperator extensiondurationSelector
triggers a value or completes. -
throttleTime(
Duration duration, {bool leading = true, bool trailing = true, Scheduler? scheduler}) → Observable< T> -
Available on Observable<
Emits a value from this Observable, then ignores values forT> , provided by the ThrottleOperator extensionduration
.