shad-go/ratelimit/ratelimit.go
2021-03-05 14:07:25 +03:00

29 lines
568 B
Go

// +build !solution
package ratelimit
import (
"context"
"errors"
"time"
)
// Limiter is precise rate limiter with context support.
type Limiter struct {
}
var ErrStopped = errors.New("limiter stopped")
// NewLimiter returns limiter that throttles rate of successful Acquire() calls
// to maxSize events at any given interval.
func NewLimiter(maxCount int, interval time.Duration) *Limiter {
panic("not implemented")
}
func (l *Limiter) Acquire(ctx context.Context) error {
panic("not implemented")
}
func (l *Limiter) Stop() {
panic("not implemented")
}