Package batcher
Overview ▹
Index ▹
type Batcher ¶
Batcher implements the batching resiliency pattern
type Batcher struct {
// contains filtered or unexported fields
}
▹ Example
func New ¶
func New(timeout time.Duration, doWork func([]interface{}) error) *Batcher
New constructs a new batcher that will batch all calls to Run that occur within `timeout` time before calling doWork just once for the entire batch. The doWork function must be safe to run concurrently with itself as this may occur, especially when the timeout is small.
func (*Batcher) Prefilter ¶
func (b *Batcher) Prefilter(filter func(interface{}) error)
Prefilter specifies an optional function that can be used to run initial checks on parameters passed to Run before being added to the batch. If the prefilter returns a non-nil error, that error is returned immediately from Run and the batcher is not invoked. A prefilter cannot safely be specified for a batcher if Run has already been invoked. The filter function specified must be concurrency-safe.
func (*Batcher) Run ¶
func (b *Batcher) Run(param interface{}) error
Run runs the work function with the given parameter, possibly including it in a batch with other calls to Run that occur within the specified timeout. It is safe to call Run concurrently on the same batcher.