コード例 #1
0
ファイル: OHMRowMutation.cs プロジェクト: charliem/OCM
        public OHMCellMutation(byte[] column, OHMCell cell)
        {
            //Store the params
            this.column = column;
            this.cell = cell;

            //Make sure we don't delete this
            toDelete = false;
        }
コード例 #2
0
ファイル: OHMRowMutation.cs プロジェクト: charliem/OCM
 public void addUpdate(byte[] column, OHMCell cell)
 {
     changes.AddLast(new OHMCellMutation(column, cell));
 }