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