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