1 2 3 4 5 6 7 8 9
package files func (batch *Batch) queue(op txOp) { if batch.closed { return } batch.ops = append(batch.ops, op) }