Example #1
0
 /** {@inheritDoc} */
 @Override
 public <N> Mutator<K> addDeletion(K key, String cf, N columnName, Serializer<N> nameSerializer) {
   addDeletion(key, cf, columnName, nameSerializer, keyspace.createClock());
   return this;
 }
Example #2
0
 /**
  * Deletes the columns defined in the HSuperColumn. If there are no HColumns attached, we delete
  * the whole thing.
  */
 public <SN, N, V> Mutator<K> addSubDelete(K key, String cf, HSuperColumn<SN, N, V> sc) {
   return addSubDelete(key, cf, sc, keyspace.createClock());
 }