debounce

package
v1.8.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 25, 2026 License: Apache-2.0 Imports: 1 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AtMostOnceEvent

type AtMostOnceEvent struct {
	Id  string
	Err error
}

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.

func Build

func Build() Debouncer

Build creates a new Debouncer

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL