Apache.Cassandra.Cassandra.Client.recv_remove()

Here are the examples of the csharp api class Apache.Cassandra.Cassandra.Client.recv_remove() 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 void remove(string keyspace, string key, ColumnPath column_path, long timestamp, ConsistencyLevel consistency_level)
      {
        send_remove(keyspace, key, column_path, timestamp, consistency_level);
        recv_remove();
      }

2. Example

Project: cassandra-sharp
Source File: Cassandra.cs
public void remove(byte[] key, ColumnPath column_path, long timestamp, ConsistencyLevel consistency_level)
      {
        #if !SILVERLIGHT
        send_remove(key, column_path, timestamp, consistency_level);
        recv_remove();

        #else
        var asyncResult = Begin_remove(null, null, key, column_path, timestamp, consistency_level);
        End_remove(asyncResult);

        #endif
      }