mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-06 16:16:44 +08:00
25 lines
808 B
C#
25 lines
808 B
C#
// Copyright (c) 2025-2026 GeWuYou
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
using System.Threading;
|
|
using GFramework.Cqrs.Abstractions.Cqrs;
|
|
|
|
namespace GFramework.Cqrs.Tests.Cqrs;
|
|
|
|
/// <summary>
|
|
/// 处理 <see cref="DispatcherCacheRequest" />。
|
|
/// </summary>
|
|
internal sealed class DispatcherCacheRequestHandler : IRequestHandler<DispatcherCacheRequest, int>
|
|
{
|
|
/// <summary>
|
|
/// 返回固定结果,供缓存测试验证 dispatcher 请求路径。
|
|
/// </summary>
|
|
/// <param name="request">当前请求。</param>
|
|
/// <param name="cancellationToken">取消令牌。</param>
|
|
/// <returns>固定整数结果。</returns>
|
|
public ValueTask<int> Handle(DispatcherCacheRequest request, CancellationToken cancellationToken)
|
|
{
|
|
return ValueTask.FromResult(1);
|
|
}
|
|
}
|