- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试构建一个事件驱动的 Azure 队列,每次将消息放入 Azure 队列时都会触发一个事件。使用 AzureXplorer,我看到消息已正确放入 Azure 队列中,但 CloudQueueClient.ResponseReceived 事件从未触发。我正在使用 Azure V1.4。这是我的 Worker 角色的代码:
public class WorkerRole : RoleEntryPoint
{
public override void Run()
{
while (true)
{
Thread.Sleep(10000);
}
}
public override bool OnStart()
{
// Set the maximum number of concurrent connections
ServicePointManager.DefaultConnectionLimit = 12;
var queuDataSource = new AzureQueueDataSource();
queuDataSource.GetCloudQueueClient().ResponseReceived +=new EventHandler<ResponseReceivedEventArgs>(WorkerRole_ResponseReceived);
// For information on handling configuration changes
// see the MSDN topic at http://go.microsoft.com/fwlink/?LinkId=166357.
return base.OnStart();
}
void WorkerRole_ResponseReceived(object sender, ResponseReceivedEventArgs e)
{
var i = 1; // Breakpoint here never happends
}
}
最佳答案
需要轮询 Windows Azure 队列以获取新消息。请参阅 SDK 示例或代码 here有关如何查询队列中新消息的示例。
需要考虑的事项的快速列表:
所有这些都有大量的报道。请参阅上面链接中的文档/示例。这篇文章也不错:http://blogs.msdn.com/b/appfabriccat/archive/2010/12/20/best-practices-for-maximizing-scalability-and-cost-effectiveness-of-queue-based-messaging-solutions-on-windows-azure.aspx
关于azure - CloudQueueClient.ResponseReceived 事件损坏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5449216/
我正在尝试构建一个事件驱动的 Azure 队列,每次将消息放入 Azure 队列时都会触发一个事件。使用 AzureXplorer,我看到消息已正确放入 Azure 队列中,但 CloudQueueC
我正在尝试构建一个事件驱动的 Azure 队列,每次将消息放入 Azure 队列时都会触发一个事件。使用 AzureXplorer,我看到消息已正确放入 Azure 队列中,但 CloudQueueC
如果我使用 .NET SDK 从 MVC 应用程序添加 Windows Azure 队列项或 Blob 存储引用,每个组件应保留多长时间? 对于队列,我们有 CloudStorageAccount
为了与 Azure 队列存储交互,.NET 提供了 CloudQueueClient 和 QueueClient 类。可以通过以下链接找到它们。 CloudQueueClient MS documen
我是一名优秀的程序员,十分优秀!