微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

asp.net core MediatR

加入MediatR包

<packagereference Include="MediatR.Extensions.Microsoft.DependencyInjection" Version="10.0.1" />

program.cs中调用AddMediatR

builder.Services.AddMediatR(Assembly.GetExecutingAssembly());

定义消息实体和消息处理类

    public record PostNotification (string Title, string Body) : INotification;

    public class PostNotificationHandler1 : NotificationHandler<PostNotification>
    {
        protected override void Handle(PostNotification notification)
        {
            Console.WriteLine("1.received:" + notification);
        }
    }

    public class PostNotificationHandler2 : NotificationHandler<PostNotification>
    {
        protected override void Handle(PostNotification notification)
        {
            Console.WriteLine("2.received:" + notification);
        }
    }

注入IMediator,并调用Publish同步发送消息

    public class PersonController : ControllerBase
    {
        private IMediator Mediator { get; set; }

        public PersonController(IMediator mediator)
        {
            this.Mediator = mediator;
        }

        [HttpGet("add")]
        public ActionResult<int> Add(int i, int j)
        {
            Mediator.Publish(new PostNotification("ttt", "bbb"));
            return i + j;
        }
    }

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐