问题描述
我正在使用取消令牌在 Azure 中开发一个函数.它是一个 Http 触发器.
I am developing a Function in Azure with Cancellation Token. Its an Http Trigger.
我在方法参数中传入了一个Cancellation Token.
I pass in a Cancellation Token in in the method parameters.
它的长期运行功能.我在进程之间取消了请求,但进程继续运行并且取消令牌没有影响.
Its long running function. And I cancel the request in between of the process but the process keeps running and the cancellation token doesn't take its affect.
Azure Functions 是否支持此功能,如果我在其间取消 Http 请求,它也应该取消其执行,但事实并非如此.
Is this supported in Azure Functions, that if I cancel a Http Request in between it should also cancel its execution but this is not the case.
我通过一小段代码对此进行了测试
I tested this via small piece of code
public static class LongRunningFunction
{
[FunctionName("LongRunningFunction")]
public static async Task<IActionResult> RunAsync(
[HttpTrigger(AuthorizationLevel.Anonymous, "get", "post", Route = "Long")]
HttpRequest req, ILogger log, CancellationToken token)
{
try
{
await Task.Delay(10000, token);
return new OkResult();
}
catch (OperationCanceledException)
{
return new NotFoundResult();
}
catch (Exception e)
{
return new InternalServerErrorResult();
}
}
}
我使用 Postman 执行死刑.
And I used Postman for the execution.
我做错了吗?
我正在从以下 链接
推荐答案
我知道这是一个老问题,但我找到了这个问题的答案.
I know this is an old question, but I found the answer to this issue.
在 Azure Functions 中,有 2 个取消令牌.
In Azure Functions, there are 2 cancellation tokens.
Function Method 参数中传递的令牌是Host Cancellation Token - 当主机即将关闭时请求取消.
The token passed in Function Method parameter is the Host Cancellation Token - cancellation is requested when the host is about to shut down.
另一个标记是 req.HttpContext.RequestAborted 属性.当浏览器取消请求时它被取消 - 这就是你所追求的.
The other token is req.HttpContext.RequestAborted property. It's being cancelled when browser cancels the request - this is what you were after.
另外,您可以使用以下代码:
In addition, you can use following code:
using var cancellationSource = CancellationTokenSource.CreateLinkedTokenSource(hostCancellationToken, req.HttpContext.RequestAborted);
获取在主机或请求被取消时取消的令牌.
To get a token that cancels when either host or request is being cancelled.
这篇关于Azure Functions 使用带有 Http 触发器的取消令牌的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!


大气响应式网络建站服务公司织梦模板
高端大气html5设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)