Apache.Cassandra.Cassandra.Client.recv_multiget()

Here are the examples of the csharp api class Apache.Cassandra.Cassandra.Client.recv_multiget() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: hectorsharp
Source File: Cassandra.cs
public Dictionary<string, ColumnOrSuperColumn> multiget(string keyspace, List<string> keys, ColumnPath column_path, ConsistencyLevel consistency_level)
      {
        send_multiget(keyspace, keys, column_path, consistency_level);
        return recv_multiget();
      }