1 Star 0 Fork 2

Fengzhi/gkit

forked from menuiis/gkit 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
limiter.go 1.12 KB
一键复制 编辑 原始数据 按行查看 历史
SongZhibin97 提交于 2021-05-17 11:10 . fix Comment format
package restrictor
import (
"context"
"time"
)
type Allow interface {
// Allow AllowN(time.Now(),1)
Allow() bool
// AllowN 截止到某一时刻,目前桶中数目是否至少为 n 个,满足则返回 true,同时从桶中消费 n 个 token
AllowN(now time.Time, n int) bool
}
type Wait interface {
// Wait WaitN(ctx,1)
Wait(ctx context.Context) error
// WaitN 如果此时桶内 Token 数组不足 (小于 N),那么 Wait 方法将会阻塞一段时间,直至 Token 满足条件。如果充足则直接返回
// 我们可以设置 context 的 Deadline 或者 Timeout,来决定此次 Wait 的最长时间。
WaitN(ctx context.Context, n int) error
}
// AllowFunc 实现 Allow 接口
type AllowFunc func(now time.Time, n int) bool
func (a AllowFunc) Allow() bool {
return a.AllowN(time.Now(), 1)
}
func (a AllowFunc) AllowN(now time.Time, n int) bool {
return a(now, n)
}
// WaitFunc 实现 Wait 接口
type WaitFunc func(ctx context.Context, n int) error
func (w WaitFunc) Wait(ctx context.Context) error {
return w.WaitN(ctx, 1)
}
func (w WaitFunc) WaitN(ctx context.Context, n int) error {
return w(ctx, n)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/fengzhi_1/gkit.git
git@gitee.com:fengzhi_1/gkit.git
fengzhi_1
gkit
gkit
b6285053065d

搜索帮助