shithub: furgit

ref: 27ef9a7e1f2589d1a0eeee4cd6d36d1926989cf2
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)
}