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