Apache.Cassandra.Cassandra.Client.recv_describe_keyspaces()

Here are the examples of the csharp api class Apache.Cassandra.Cassandra.Client.recv_describe_keyspaces() 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 THashSet<string> describe_keyspaces()
      {
        send_describe_keyspaces();
        return recv_describe_keyspaces();
      }

2. Example

Project: cassandra-sharp
Source File: Cassandra.cs
public List<KsDef> describe_keyspaces()
      {
        #if !SILVERLIGHT
        send_describe_keyspaces();
        return recv_describe_keyspaces();

        #else
        var asyncResult = Begin_describe_keyspaces(null, null, );
        return End_describe_keyspaces(asyncResult);

        #endif
      }