Apache.Cassandra.Cassandra.Client.batch_mutate C# (CSharp) Method

batch_mutate() public method

Mutate many columns or super columns for many row keys. See also: Mutation. mutation_map maps key to column family to a list of Mutation objects to take place at that scope. *
public batch_mutate ( Dictionary mutation_map, ConsistencyLevel consistency_level ) : void
mutation_map Dictionary
consistency_level ConsistencyLevel
return void
      public void batch_mutate(Dictionary<byte[], Dictionary<string, List<Mutation>>> mutation_map, ConsistencyLevel consistency_level)
      {
        #if !SILVERLIGHT
        send_batch_mutate(mutation_map, consistency_level);
        recv_batch_mutate();

        #else
        var asyncResult = Begin_batch_mutate(null, null, mutation_map, consistency_level);
        End_batch_mutate(asyncResult);

        #endif
      }
      #if SILVERLIGHT
Cassandra.Client