shithub: furgit

ref: 1734207266752b9464f42c31f7728a7e3c692c50
dir: /refstore/files/batch_queue.go/

View raw version
package files

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

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