mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 00:39:00 +08:00
- 在 CqrsDispatcher 中添加 Concurrent 包引用以支持线程安全操作 - 在全局引用文件中增加 Concurrent 包引用,统一并发编程支持 - 为后续的并发处理逻辑改进奠定基础架构支持
10 lines
320 B
C#
10 lines
320 B
C#
global using System;
|
|
global using System.Collections.Generic;
|
|
global using System.Linq;
|
|
global using System.Threading;
|
|
global using System.Threading.Tasks;
|
|
global using System.Reflection;
|
|
global using Microsoft.Extensions.DependencyInjection;
|
|
global using System.Diagnostics;
|
|
global using System.Collections.Concurrent;
|