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