Apache.Cassandra.Cassandra.Client.recv_get_slice()

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

2 Examples 7

1. Example

Project: hectorsharp
Source File: Cassandra.cs
public List<ColumnOrSuperColumn> get_slice(string keyspace, string key, ColumnParent column_parent, SlicePredicate predicate, ConsistencyLevel consistency_level)
      {
        send_get_slice(keyspace, key, column_parent, predicate, consistency_level);
        return recv_get_slice();
      }

2. Example

Project: cassandra-sharp
Source File: Cassandra.cs
public List<ColumnOrSuperColumn> get_slice(byte[] key, ColumnParent column_parent, SlicePredicate predicate, ConsistencyLevel consistency_level)
      {
        #if !SILVERLIGHT
        send_get_slice(key, column_parent, predicate, consistency_level);
        return recv_get_slice();

        #else
        var asyncResult = Begin_get_slice(null, null, key, column_parent, predicate, consistency_level);
        return End_get_slice(asyncResult);

        #endif
      }