Ejemplo 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;
        }
Ejemplo n.º 2
0
 public void addUpdate(byte[] column, OHMCell cell)
 {
     changes.AddLast(new OHMCellMutation(column, cell));
 }