Exemple #1
0
 public Task <RiakResult <RiakIndexResult> > IndexGet(string bucket, string indexName, int value, RiakIndexGetOptions options = null)
 {
     return(Task.Factory.StartNew(() => _client.IndexGet(bucket, indexName, value, options)));
 }
 public Task <RiakResult <IList <string> > > IndexGet(string bucket, string indexName, int value)
 {
     return(Task.Factory.StartNew(() => _client.IndexGet(bucket, indexName, value)));
 }