ref: 3ce59c3248dec0eb0f918c42f37f53bc2ac20425
dir: /ref/store/batch_store.go/
package refstore
// Batcher begins non-atomic reference batches.
type Batcher interface {
// BeginBatch creates one new queued batch.
//
// Labels: Life-Parent.
BeginBatch() (Batch, error)
}