如何在Azure Service Bus Queue客户端中使用CancellationToken?

时间:2014-05-15 03:18:14

标签: c# azure async-await azureservicebus cancellation-token

在Azure Service Bus队列客户端中,我使用ReceiveBatchAsync方法等待指定时间异步接收一批消息。

var messages = await queueClient.ReceiveBatchAsync(10, TimeSpan.FromSeconds(30));

我想彻底关闭我的应用程序,所以我在所有长时间运行的异步过程中实现CancellationToken,但似乎并不是一个过载可以取消的ReceiveBatchAsync

换句话说,我想这样做,但我不能:

var messages = await queueClient.ReceiveBatchAsync(10, TimeSpan.FromSeconds(30),
                                                       cancellationToken);

CancellationToken应用于此类不能直接提供的任务的最佳方法是什么?我不想在关机期间等待整整30秒。

1 个答案:

答案 0 :(得分:3)

你可能会像这样使用QueueClient.Abort

using (cancellationToken.Register(() => queueClient.Abort())
{
    var messages = await queueClient.ReceiveBatchAsync(
        10, TimeSpan.FromSeconds(30));
    return messages; // or process it 
}