AuditOperator<T> extension
- on
-
- Observable<
T>
- Observable<
Methods
-
audit<
R> (DurationSelector< T, R> durationSelector) → Observable<T> -
Ignores values from this Observable for a duration determined by the
Observable returned from
durationSelector
, then emits the most recent source value, then repeats the process. -
auditTime(
Duration duration, {Scheduler? scheduler}) → Observable< T> -
Ignores values from this Observable for the given
duration
, then emits the most recent source value, then repeats the process.