shithub: furgit

ref: 8f577284f47f699855dcb3ceda21aa9d8be77c2f
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)
}