在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秒。
答案 0 :(得分:3)
你可能会像这样使用QueueClient.Abort
:
using (cancellationToken.Register(() => queueClient.Abort())
{
var messages = await queueClient.ReceiveBatchAsync(
10, TimeSpan.FromSeconds(30));
return messages; // or process it
}