audit<R> method
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.
Implementation
Observable<T> audit<R>(DurationSelector<T, R> durationSelector) =>
AuditObservable<T, R>(this, durationSelector);