Popularity
2.2
Growing
Activity
5.2
Declining
35
2
2

Programming language: Go
License: MIT License
Tags: Utilities    

throttle alternatives and similar packages

Based on the "Utilities" category.
Alternatively, view throttle alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of throttle or a related project?

Add another 'Utilities' Package

README

throttle

throttling function called sync.Once like interface

var throttler = throttle.New(time.Second*5)

func SomeFunc() {
    throttler.Do(func(){
        fmt.Println("run")
    })
}

License

The MIT License (MIT)


*Note that all licence references and agreements mentioned in the throttle README section above are relevant to that project's source code only.