Skip to content

Latest commit

 

History

History
41 lines (22 loc) · 759 Bytes

debounce.md

File metadata and controls

41 lines (22 loc) · 759 Bytes

Debounce Operator

Overview

Only emit an item from an Observable if a particular timespan has passed without it emitting another item.

Example

observable.Debounce(rxgo.WithDuration(250 * time.Millisecond))

Output: each item emitted by the Observable if not item has been emitted after 250 milliseconds.

Options

WithBufferedChannel

Detail

WithContext

Detail

WithObservationStrategy

Detail

WithErrorStrategy

Detail

WithPool

Detail

WithCPUPool

Detail