public OHMCellMutation(byte[] column, OHMCell cell) { //Store the params this.column = column; this.cell = cell; //Make sure we don't delete this toDelete = false; }
public void addUpdate(byte[] column, OHMCell cell) { changes.AddLast(new OHMCellMutation(column, cell)); }