aboutsummaryrefslogtreecommitdiff
path: root/ref/store/batch_store.go
blob: 16ca3d927826849a4c85a8c06b8e7b303e066268 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
package store

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