shithub: furgit

ref: 8f577284f47f699855dcb3ceda21aa9d8be77c2f
dir: /refstore/batch_store.go/

View raw version
package refstore

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