public GetKeyRangeSliceCommand(string keyspace, string columnFamily, ConsistencyLevel consistencyLevel, KeyRange keyRange, SlicePredicate predicate)
     : base(keyspace, columnFamily)
 {
     this.consistencyLevel = consistencyLevel;
     this.keyRange         = keyRange;
     this.predicate        = predicate;
 }
Ejemplo n.º 2
0
 public GetSliceCommand(string keyspace, string columnFamily, byte[] rowKey, ConsistencyLevel consistencyLevel, SlicePredicate predicate)
     : base(keyspace, columnFamily)
 {
     PartitionKey          = rowKey;
     this.consistencyLevel = consistencyLevel;
     this.predicate        = predicate;
 }
 public DeleteRowCommand(string keyspace, string columnFamily, byte[] rowKey, ConsistencyLevel consistencyLevel, long?timestamp)
     : base(keyspace, columnFamily)
 {
     PartitionKey          = rowKey;
     this.consistencyLevel = consistencyLevel;
     this.timestamp        = timestamp;
 }
 public MultiGetSliceCommand(string keyspace, string columnFamily, ConsistencyLevel consistencyLevel, List <byte[]> keys, SlicePredicate predicate)
     : base(keyspace, columnFamily)
 {
     this.consistencyLevel = consistencyLevel;
     this.keys             = keys;
     this.predicate        = predicate;
 }
 public GetCommand(string keyspace, string columnFamily, byte[] rowKey, ConsistencyLevel consistencyLevel, byte[] columnName)
     : base(keyspace, columnFamily)
 {
     PartitionKey          = rowKey;
     this.consistencyLevel = consistencyLevel;
     this.columnName       = columnName;
 }
 public BatchMutateCommand(string keyspace, string columnFamily, ConsistencyLevel consistencyLevel, Dictionary <string, Dictionary <byte[], List <IMutation> > > mutations)
     : base(keyspace, columnFamily)
 {
     this.consistencyLevel = consistencyLevel;
     this.mutations        = mutations;
 }