我正在编写一个库来使用 Azure 表存储。基本模式是给定的 HTTP 请求在内容流中返回一个数字结果,并在标头中返回一个指向下一组结果的指针。当从流中读取结果时,就会产生结果。我正在使用 System.Net.Http 库(以前的 Microsoft.Net.Http),它在最新版本中删除了同步版本的 HttpClient.Send 和其他同步方法。新版本使用任务。我以前用过Tasks,但不是为了这么复杂的东西,而且我很难开始。
已转换为异步模式的调用是:HttpClient.Send、response.Context.ContentReadSteam。我已经清理了代码,以便显示重要部分。
var queryUri = _GetTableQueryUri(tableServiceUri, tableName, query, null, null, timeout);
while(true) {
var continuationParitionKey = "";
var continuationRowKey = "";
using (var request = GetRequest(queryUri, null, action.Method, azureAccountName, azureAccountKey))
{
using (var client = new HttpClient())
{
using (var response = client.Send(request, HttpCompletionOption.ResponseHeadersRead))
{
continuationParitionKey = // stuff from headers
continuationRowKey = // stuff from headers
using (var reader = XmlReader.Create(response.Content.ContentReadStream))
{
while (reader.Read())
{
if (reader.NodeType == XmlNodeType.Element && reader.Name == "entry" && reader.NamespaceURI == "http://www.w3.org/2005/Atom")
{
yield return XElement.ReadFrom(reader) as XElement;
}
}
reader.Close();
}
}
}
}
if (continuationParitionKey == null && continuationRowKey == null)
break;
queryUri = _GetTableQueryUri(tableServiceUri, tableName, query, continuationParitionKey, continuationRowKey, timeout);
}
下面是我成功转换的一个示例。
client.SendAsync(request, HttpCompletionOption.ResponseHeadersRead).ContinueWith(task =>
{
using (var response = task.Result)
{
if (response.StatusCode == HttpStatusCode.Created && action == HttpMethod.Post)
{
return XElement.Load(response.Content.ReadAsStreamAsync().Result);
}
}
});
有人对如何将循环/产量转换为新模式有任何建议吗?
谢谢!埃里克