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