blob: 725a05e5bab5f9c8ae25d620f65c6336e569033d (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
package refstore
// Batcher begins non-atomic reference batches.
type Batcher interface {
// BeginBatch creates one new queued batch.
//
// Labels: Life-Parent.
BeginBatch() (Batch, error)
}
|