Esempio n. 1
0
        public OHMCellMutation(byte[] column, OHMCell cell)
        {
            //Store the params
            this.column = column;
            this.cell = cell;

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