2015-02-10 18:23:58 +00:00
|
|
|
package impl
|
|
|
|
|
2015-02-11 12:33:46 +00:00
|
|
|
func Throttler(name string) *Impl {
|
2015-02-10 18:23:58 +00:00
|
|
|
return &Impl{
|
2015-02-11 12:33:46 +00:00
|
|
|
name: name,
|
2015-02-10 18:45:13 +00:00
|
|
|
actor: func(data []byte) (resp []byte, err error) {
|
2015-02-10 18:23:58 +00:00
|
|
|
return data, nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|