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