mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 00:39:00 +08:00
- 拆分 CqrsDispatcherCacheTests 末尾的 request、handler 与 behavior 辅助类型到同目录独立文件 - 修复 dispatcher cache 测试中的 ConfigureAwait warning,保持现有断言与分发语义不变
22 lines
751 B
C#
22 lines
751 B
C#
using System.Threading;
|
|
using GFramework.Cqrs.Abstractions.Cqrs;
|
|
|
|
namespace GFramework.Cqrs.Tests.Cqrs;
|
|
|
|
/// <summary>
|
|
/// 处理 <see cref="DispatcherPipelineCacheRequest" />。
|
|
/// </summary>
|
|
internal sealed class DispatcherPipelineCacheRequestHandler : IRequestHandler<DispatcherPipelineCacheRequest, int>
|
|
{
|
|
/// <summary>
|
|
/// 返回固定结果,供 pipeline 缓存测试使用。
|
|
/// </summary>
|
|
/// <param name="request">当前请求。</param>
|
|
/// <param name="cancellationToken">取消令牌。</param>
|
|
/// <returns>固定整数结果。</returns>
|
|
public ValueTask<int> Handle(DispatcherPipelineCacheRequest request, CancellationToken cancellationToken)
|
|
{
|
|
return ValueTask.FromResult(2);
|
|
}
|
|
}
|