Documentation ¶
Overview ¶
Package batcher supports batching of items. Create a Batcher with a handler and add items to it. Items are accumulated while handler calls are in progress; when the handler returns, it will be called again with items accumulated since the last call. Multiple concurrent calls to the handler are supported.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Split ¶
Split determines how to split n (representing n items) into batches based on opts. It returns a slice of batch sizes.
For example, Split(10) might return [10], [5, 5], or [2, 2, 2, 2, 2] depending on opts. opts may be nil to accept defaults.
Split will return nil if n is less than o.MinBatchSize.
The sum of returned batches may be less than n (e.g., if n is 10x larger than o.MaxBatchSize, but o.MaxHandlers is less than 10).
Types ¶
type Batcher ¶
type Batcher struct {
// contains filtered or unexported fields
}
A Batcher batches items.
func New ¶
New creates a new Batcher.
itemType is type that will be batched. For example, if you want to create batches of *Entry, pass reflect.TypeOf(&Entry{}) for itemType.
opts can be nil to accept defaults.
handler is a function that will be called on each bundle. If itemExample is of type T, the argument to handler is of type []T.
func (*Batcher) Add ¶
Add adds an item to the batcher. It blocks until the handler has processed the item and reports the error that the handler returned. If Shutdown has been called, Add immediately returns an error.