为所有请求调用 CancellationTokenSource 回调
CancellationTokenSource callback is called for all request
我设置了一个带有处理程序的 CancellationTokenSource
public class AppTimeout
{
public async Task Invoke(HttpContext httpContext)
{
var cancellationTokenSource = CancellationTokenSource.CreateLinkedTokenSource(httpContext.RequestAborted);
cancellationTokenSource.CancelAfter(myTimestamp);
cancellationTokenSource.Token.Register(() =>
{
log.info("...");
});
await _next(httpContext);
}
}
我的问题是,如果我只有一个超时请求,cancellationTokenSource.Token 的回调会被 Invoke 方法处理过的所有请求调用,甚至是已经在正确时间完成的请求
你知道我为什么会遇到这种行为吗?请问如何解决?
using var registration = timeoutCancellationTokenSource.Token.Register(() => {
log.info($"timeout path is {path}");
});
// your other code here...
现在它将在完成时正确注销,即离开 using
的范围时。
我设置了一个带有处理程序的 CancellationTokenSource
public class AppTimeout
{
public async Task Invoke(HttpContext httpContext)
{
var cancellationTokenSource = CancellationTokenSource.CreateLinkedTokenSource(httpContext.RequestAborted);
cancellationTokenSource.CancelAfter(myTimestamp);
cancellationTokenSource.Token.Register(() =>
{
log.info("...");
});
await _next(httpContext);
}
}
我的问题是,如果我只有一个超时请求,cancellationTokenSource.Token 的回调会被 Invoke 方法处理过的所有请求调用,甚至是已经在正确时间完成的请求
你知道我为什么会遇到这种行为吗?请问如何解决?
using var registration = timeoutCancellationTokenSource.Token.Register(() => {
log.info($"timeout path is {path}");
});
// your other code here...
现在它将在完成时正确注销,即离开 using
的范围时。