shithub: furgit

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