FluentCassandra.Apache.Cassandra.Cassandra.Client.recv_system_update_keyspace()

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

1 Example 7

1. Example

Project: fluentcassandra
Source File: Cassandra.cs
public string system_update_keyspace(KsDef ks_def)
      {
        #if !SILVERLIGHT
        send_system_update_keyspace(ks_def);
        return recv_system_update_keyspace();

        #else
        var asyncResult = Begin_system_update_keyspace(null, null, ks_def);
        return End_system_update_keyspace(asyncResult);

        #endif
      }