mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 09:04:52 +01:00
ec117593f1
Used staticcheck 2022.1.2 (v0.3.2) See: staticcheck.io
31 lines
616 B
Go
31 lines
616 B
Go
// Tokens for controlling concurrency
|
|
|
|
package pacer
|
|
|
|
// TokenDispenser is for controlling concurrency
|
|
type TokenDispenser struct {
|
|
tokens chan struct{}
|
|
}
|
|
|
|
// NewTokenDispenser makes a pool of n tokens
|
|
func NewTokenDispenser(n int) *TokenDispenser {
|
|
td := &TokenDispenser{
|
|
tokens: make(chan struct{}, n),
|
|
}
|
|
// Fill up the upload tokens
|
|
for i := 0; i < n; i++ {
|
|
td.tokens <- struct{}{}
|
|
}
|
|
return td
|
|
}
|
|
|
|
// Get gets a token from the pool - don't forget to return it with Put
|
|
func (td *TokenDispenser) Get() {
|
|
<-td.tokens
|
|
}
|
|
|
|
// Put returns a token
|
|
func (td *TokenDispenser) Put() {
|
|
td.tokens <- struct{}{}
|
|
}
|