Apache.Cassandra.Cassandra.Client.describe_splits C# (CSharp) Method

describe_splits() public method

experimental API for hadoop/parallel query support. may change violently and without warning. returns list of token strings such that first subrange is (list[0], list[1]], next is (list[1], list[2]], etc.
public describe_splits ( string cfName, string start_token, string end_token, int keys_per_split ) : List
cfName string
start_token string
end_token string
keys_per_split int
return List
      public List<string> describe_splits(string cfName, string start_token, string end_token, int keys_per_split)
      {
        #if !SILVERLIGHT
        send_describe_splits(cfName, start_token, end_token, keys_per_split);
        return recv_describe_splits();

        #else
        var asyncResult = Begin_describe_splits(null, null, cfName, start_token, end_token, keys_per_split);
        return End_describe_splits(asyncResult);

        #endif
      }
      #if SILVERLIGHT
Cassandra.Client