11 lines
158 B
Go
11 lines
158 B
Go
package limiters
|
|
|
|
import "context"
|
|
|
|
type Limiter interface {
|
|
Wait(ctx context.Context) error
|
|
WaitN(ctx context.Context, n int) error
|
|
Shutdown()
|
|
Reset()
|
|
}
|