debounce

package
v0.18.1 Latest Latest
Warning

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

Go to latest
Published: Jun 12, 2024 License: GPL-3.0 Imports: 2 Imported by: 0

Documentation

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

func New

func New(after time.Duration) func(f func())
Example
var counter uint64

f := func() {
	atomic.AddUint64(&counter, 1)
}

debounced := New(100 * time.Millisecond)

for i := 0; i < 3; i++ {
	for j := 0; j < 10; j++ {
		debounced(f)
	}

	time.Sleep(200 * time.Millisecond)
}

c := int(atomic.LoadUint64(&counter))

fmt.Println("Counter is", c)
Output:

Counter is 3

Types

type Debounce

type Debounce struct {
	sync.Mutex
	// contains filtered or unexported fields
}

Jump to

Keyboard shortcuts

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