shithub: furgit

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