- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我看到许多引用文献在 CloudQueueClient 类中提到术语“结果段”,例如在方法“ListQueuesSegmented”和“ListQueuesSegmentedAsync”中。但我没有找到任何关于如何使用这些函数的有意义的示例。有哪位Azure专家可以解释一下吗?
谢谢
德里克
最佳答案
创建存储帐户时,可以在内部创建无限数量的队列(有关详细信息,请参阅 storage limits)。
假设您想获取有关所有队列的信息,您可以使用 CloudQueueClient.ListQueues
迭代所有队列的方法:
var storageAccount = CloudStorageAccount.Parse("MyConnectionString");
var queueClient = storageAccount.CreateCloudQueueClient();
foreach(var queue in queueClient.ListQueues())
{
// Do something
}
假设您有一千个队列,您可能不想执行此请求,因为它可能会超时,达到某些限制。
这就是分段
方法的所有目的。它将返回前 X 个元素 + 一个允许您请求下一个 X 元素的 token 。
当您使用表格显示数据(在 UI 端)时,有时您必须使用分页,因为您的表格可能太大而无法完全显示:这是相同的概念。
现在如果你想使用它:
// Initialize a new token
var continuationToken = new QueueContinuationToken();
// Execute the query
var segment = queueClient.ListQueuesSegmented(continuationToken);
// Get the new token in order to get the next segment
continuationToken = segment.ContinuationToken;
// Get the results
var queues = segment.Results.ToList();
// do something
...
// Execute the query again with the comtinuation token to fetch next results
segment = queueClient.ListQueuesSegmented(continuationToken);
关于azure - CloudQueueClient类中 "result segment"的含义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39666294/
我正在尝试构建一个事件驱动的 Azure 队列,每次将消息放入 Azure 队列时都会触发一个事件。使用 AzureXplorer,我看到消息已正确放入 Azure 队列中,但 CloudQueueC
我正在尝试构建一个事件驱动的 Azure 队列,每次将消息放入 Azure 队列时都会触发一个事件。使用 AzureXplorer,我看到消息已正确放入 Azure 队列中,但 CloudQueueC
如果我使用 .NET SDK 从 MVC 应用程序添加 Windows Azure 队列项或 Blob 存储引用,每个组件应保留多长时间? 对于队列,我们有 CloudStorageAccount
为了与 Azure 队列存储交互,.NET 提供了 CloudQueueClient 和 QueueClient 类。可以通过以下链接找到它们。 CloudQueueClient MS documen
我是一名优秀的程序员,十分优秀!