.net core 中使用AsyncLocal传递变量

官网

https://github.com/dotnet/runtime/blob/16b6369b7509e58c35431f05681a9f9e5d10afaa/src/libraries/System.Private.CoreLib/src/System/Threading/AsyncLocal.cs#L45

AsyncLocal是一个在.NET中用来在同步任务和异步任务中保持全局变量的工具类。它允许你在不同线程的同一个对象中保留一个特定值,这样你可以在不同的函数和任务中访问这个值。这是在实现异步任务中维持一致性和优雅性的一种重要手段。

中间件中使用

csharp 复制代码
 public class BaseClass
 {
     public string Id { get; set; }
 }

    public static class AmbientContext
    {
        public static readonly ConcurrentDictionary<string, AsyncLocal<object?>>
            _contexts = new(StringComparer.Ordinal);

        public static void Set<T>(string key, [MaybeNull] T val)
        {
            AsyncLocal<object?> keyctx = _contexts.AddOrUpdate(
                    key,
                    k => new AsyncLocal<object?>(),
                    (k, al) => al);
            keyctx.Value = (object?)val;
        }

        [return: MaybeNull]
        public static T Get<T>(string key)
        {
            return _contexts.TryGetValue(key, out AsyncLocal<object?>? keyctx)
                     ? (T)(keyctx!.Value ?? default(T)!)
                     : default(T);
        }
    }


    public class AmbientContextMiddleware
    {
        private readonly RequestDelegate _next;

        public AmbientContextMiddleware(RequestDelegate next) =>
            _next = next;

        public async Task Invoke(HttpContext context)
        {
            string corrId =
                context.Request
                       .Headers["x-foocorp-correlationId"]
                       .FirstOrDefault(Guid.NewGuid().ToString());

            context.Request.Headers.Add("x-foocorp-correlationId", corrId);

            AmbientContext.Set<BaseClass>(corrId, new BaseClass() { Id=DateTime.Now.ToString()});

            await _next.Invoke(context);

            

            // TODO: emit corrid response header, esp if _we_ created it
        }
    }

[HttpGet]
public async Task<DatasetSmallMovie> GetByID(string id,string indexName)
{
    Console.WriteLine(DateTime.Now.ToString());
    Request.Headers.TryGetValue("x-foocorp-correlationId", out var headersvalue);

    Console.WriteLine(headersvalue);
    await Task.Delay(2000);

    Console.WriteLine(AmbientContext.Get<BaseClass>(headersvalue).Id);

    return await _meilisearchHelper.GetByID<DatasetSmallMovie>(id, indexName);
}

普通使用

csharp 复制代码
    using System;
    using System.Threading;
    using System.Threading.Tasks;
    public class LogContext { public string StackTrace { get; set; } public string UserInfo { get; set; } }
    public class TenantContext { public string Name { get; set; } }
    public class Program
    {
        private static AsyncLocal<LogContext> _logContext = new AsyncLocal<LogContext>(); private static AsyncLocal<TenantContext> _tenantContext = new AsyncLocal<TenantContext>();
        public static async Task Main(string[] args)
        {
            _logContext.Value = new LogContext { StackTrace = "Main Stack Trace", UserInfo = "User1" }; _tenantContext.Value = new TenantContext { Name = "Tenant A" };
            Console.WriteLine($"Initial Log Context: {_logContext.Value.StackTrace}, User: {_logContext.Value.UserInfo}, Tenant: {_tenantContext.Value.Name}");
            await Task.Run(() => LogAndProcess(new LogContext { StackTrace = "Child Stack Trace", UserInfo = "User2" }, new TenantContext { Name = "Tenant B" }));
            Console.WriteLine($"After Task Log Context: {_logContext.Value.StackTrace}, User: {_logContext.Value.UserInfo}, Tenant: {_tenantContext.Value.Name}");
        }
        private static void LogAndProcess(LogContext logContext, TenantContext tenant)
        {
            _logContext.Value = logContext; _tenantContext.Value = tenant;
            Console.WriteLine($"In Task Log Context: {_logContext.Value.StackTrace}, User: {_logContext.Value.UserInfo}, Tenant: {_tenantContext.Value.Name}");
            // Simulate some processing        Task.Delay(1000).Wait();
            Console.WriteLine($"After Processing Log Context: {_logContext.Value.StackTrace}, User: {_logContext.Value.UserInfo}, Tenant: {_tenantContext.Value.Name}");
        }
    }
相关推荐
江沉晚呤时18 小时前
使用 C# 入门深度学习:线性代数详细讲解
人工智能·后端·深度学习·线性代数·c#·.netcore
SongYuLong的博客2 天前
C# WPF .NET Core和.NET5之后引用System.Windows.Forms的解决方案
c#·wpf·.netcore
Kookoos3 天前
使用 ABP vNext 集成 MinIO 构建高可用 BLOB 存储服务
后端·c#·.net·.netcore·minio·blob
xingshanchang4 天前
Pythonnet - 实现.NET Core和Python进行混合编程
vscode·.netcore
江沉晚呤时5 天前
.NET Core 中 Swagger 配置详解:常用配置与实战技巧
前端·.netcore
矿工学编程5 天前
.NET Core liunx二进制文件安装
.netcore
编程乐趣11 天前
基于.Net Core开发的GraphQL开源项目
后端·.netcore·graphql
吾门11 天前
机器视觉开发教程——C#如何封装海康工业相机SDK调用OpenCV/YOLO/VisionPro/Halcon算法
图像处理·opencv·计算机视觉·c#·.net·.netcore·visual studio
Kookoos12 天前
ABP vNext + EF Core 实战性能调优指南
数据库·后端·c#·.net·.netcore
[email protected]13 天前
ASP.NET Core 中实现 Markdown 渲染中间件
后端·中间件·asp.net·.netcore