shithub: furgit

ref: f40daef1deefda4b76957f5d5728c4175c27be51
dir: /ref/store/batch_store.go/

View raw version
package refstore

// BatchStore begins non-atomic reference batches.
type BatchStore interface {
	// BeginBatch creates one new queued batch.
	//
	// Labels: Life-Parent.
	BeginBatch() (Batch, error)
}