ref: cf02f2958c191bea02126faf8daf72a7aae76bd9
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)
}