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