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