mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-06 16:16:44 +08:00
13 lines
525 B
C#
13 lines
525 B
C#
// Copyright (c) 2025-2026 GeWuYou
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
using GFramework.Cqrs.Abstractions.Cqrs;
|
|
|
|
namespace GFramework.Cqrs.Tests.Cqrs;
|
|
|
|
/// <summary>
|
|
/// 为 stream dispatch binding 上下文刷新回归提供带分发标识的最小流请求。
|
|
/// </summary>
|
|
/// <param name="DispatchId">当前分发的稳定标识,便于断言缓存 binding 复用时观察到的是同一次建流。</param>
|
|
internal sealed record DispatcherStreamContextRefreshRequest(string DispatchId) : IStreamRequest<int>;
|