aboutsummaryrefslogtreecommitdiff
path: root/refstore/files/batch_queue.go
blob: 4a3b3cf1910c1c2f897b425bc2f89a89b4cb7442 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
package files

func (batch *Batch) queue(op txOp) {
	if batch.closed {
		return
	}

	batch.ops = append(batch.ops, op)
}