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