Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AtMostOnceEvent ¶
type Debouncer ¶
type Debouncer interface {
// Register records the ID for later debouncing.
Register(wg *sync.WaitGroup, id string)
// Notify decrements the WaitGroup if the event's ID is registered,
// otherwise it is dropped.
// If the ID was registered, the ID is deregistered to avoid future
// decrements for the same ID.
Notify(wg *sync.WaitGroup, event AtMostOnceEvent)
}
Debouncer manages a WaitGroup with at-most-once semantics for a given ID.
Click to show internal directories.
Click to hide internal directories.