using System;
using GFramework.Core.Abstractions.Logging;
using GFramework.Core.Ioc;
using GFramework.Core.Logging;
using GFramework.Cqrs.Abstractions.Cqrs;
namespace GFramework.Cqrs.Tests.Cqrs;
///
/// 模拟局部生成注册器场景中,仅注册“可由生成代码直接引用”的那部分 handlers。
///
internal sealed class PartialGeneratedNotificationHandlerRegistry : ICqrsHandlerRegistry
{
///
/// 将生成路径可见的通知处理器注册到目标服务集合。
///
/// 承载处理器映射的服务集合。
/// 用于记录注册诊断的日志器。
///
/// 或 为 。
///
public void Register(IServiceCollection services, ILogger logger)
{
ArgumentNullException.ThrowIfNull(services);
ArgumentNullException.ThrowIfNull(logger);
services.AddTransient(
typeof(INotificationHandler),
typeof(GeneratedRegistryNotificationHandler));
logger.Debug(
$"Registered CQRS handler {typeof(GeneratedRegistryNotificationHandler).FullName} as {typeof(INotificationHandler).FullName}.");
}
}