shithub: furgit

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