shithub: furgit

ref: 85f1212724e037e6934203f04a3f6231ac609503
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)
}