Apache.Cassandra.Cassandra.Client.recv_execute_prepared_cql3_query()

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

1 Example 7

1. Example

Project: cassandra-sharp
Source File: Cassandra.cs
public CqlResult execute_prepared_cql3_query(int itemId, List<byte[]> values, ConsistencyLevel consistency)
      {
        #if !SILVERLIGHT
        send_execute_prepared_cql3_query(itemId, values, consistency);
        return recv_execute_prepared_cql3_query();

        #else
        var asyncResult = Begin_execute_prepared_cql3_query(null, null, itemId, values, consistency);
        return End_execute_prepared_cql3_query(asyncResult);

        #endif
      }