AuditOperator<T> extension

on

Methods

audit<R>(DurationSelector<T, R> durationSelector) Observable<T>

Available on Observable<T>, provided by the AuditOperator extension

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>

Available on Observable<T>, provided by the AuditOperator extension

Ignores values from this Observable for the given duration, then emits the most recent source value, then repeats the process.