2017-10-08 18:28:03 +00:00
|
|
|
package limiter
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
2017-12-29 11:43:49 +00:00
|
|
|
"net/http"
|
2017-10-08 18:28:03 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Limiter defines an interface that implementors can use to rate limit I/O
|
|
|
|
// according to some policy defined and configured by the implementor.
|
|
|
|
type Limiter interface {
|
|
|
|
// Upstream returns a rate limited reader that is intended to be used in
|
|
|
|
// uploads.
|
|
|
|
Upstream(r io.Reader) io.Reader
|
|
|
|
|
|
|
|
// Downstream returns a rate limited reader that is intended to be used
|
|
|
|
// for downloads.
|
|
|
|
Downstream(r io.Reader) io.Reader
|
2017-12-29 11:43:49 +00:00
|
|
|
|
|
|
|
// Transport returns an http.RoundTripper limited with the limiter.
|
|
|
|
Transport(http.RoundTripper) http.RoundTripper
|
2017-10-08 18:28:03 +00:00
|
|
|
}
|