Chuyển đến nội dung chính

MediatR: Publish Notification

Trong MediatR, Publish Method chính là công cụ mà chúng ta sử dụng để gửi notification đến các handler đã đăng ký. Các handler này sẽ được thực thi theo thứ tự được đăng ký.

Mô hình Publish Method trong MediatR được xây dựng theo design pattern Observer.

Design pattern Observer (hay còn gọi là Subscriber) định nghĩa một mối quan hệ một-nhiều trong đó một đối tượng publisher duy trì một danh sách các đối tượng subscriber và gửi notification cho tất cả các subscriber khi có thay đổi xảy ra. 

Ưu điểm của design pattern này là giảm sự phụ thuộc trực tiếp của các class. Việc thêm hoặc gỡ bỏ các subscriber (handler) đơn giản chỉ cần thực hiện thao tác đăng ký hoặc hủy đăng ký với mediator.

Setup Notification

MediatR cung cấp interface INotification làm lớp trung gian để thực hiện việc đăng ký subcriber

//
// Summary:
//     Marker interface to represent a notification
public interface INotification
{
}
Tạo 1 class cụ thể cho Notification
public class AddAuthorEvent: INotification
{
    public int AuthorId { get; set; }
}
Tạo 2 handler Email và Log để đăng ký xử lý Notification
using CqrsSample.Services.Repositories;
using MediatR;

namespace CqrsSample.Application.Notifications.Handlers;

public class AddAuthorEventEmailHandler: INotificationHandler<AddAuthorEvent>
{
    private readonly IAuthorRepository _authorRepository;

    public AddAuthorEventEmailHandler(IAuthorRepository authorRepository)
    {
        _authorRepository = authorRepository;
    }

    public async Task Handle(AddAuthorEvent notification, CancellationToken cancellationToken)
    {
        var author = await _authorRepository.Get(notification.AuthorId);
        if(author == null) { return; }
        var message = $"Send email: Author {author.FirstName} {author.LastName} was created";
        Console.WriteLine(message);
    }
}

public class AddAuthorEventLogHandler : INotificationHandler<AddAuthorEvent>
{
    private readonly IAuthorRepository _authorRepository;

    public AddAuthorEventLogHandler(IAuthorRepository authorRepository)
    {
        _authorRepository = authorRepository;
    }

    public async Task Handle(AddAuthorEvent notification, CancellationToken cancellationToken)
    {
        var author = await _authorRepository.Get(notification.AuthorId);
        if(author == null) { return; }
        var message = $"Log: Author {author.FirstName} {author.LastName} was created";
        Console.WriteLine(message);
    }
}
Thêm hàm trả về Author Info
public Task<AuthorModel> Get(int id)
{
    var author = _dbContext.Authors.FirstOrDefault
        (x => x.Id == id);
    if (author == null) { return null; }
    return Task.FromResult(new AuthorModel
    {
        FirstName = author.FirstName,
        LastName = author.LastName,
        Id = id
    });
}
Từ controller, chúng ta sẽ publish notification sau khi Author được tạo
[HttpPost]
public async Task<int> Create(AddAuthorModel author)
{
    var newAuthorCommand = new AddAuthorCommand
    {
        FirstName = author.FirstName,
        LastName = author.LastName
    };
    var result = await _mediator.Send(newAuthorCommand);
    await _mediator.Publish(new AddAuthorEvent { AuthorId = result });
    return result;
}
Sau khi thực hiện gọi API, bạn sẽ thấy kết quả từ console log:
info: CqrsSample.Behaviors.LoggingBehavior[0]
      Handled Int32
Send email: Author string string was created
Log: Author string string was created

Tham khảo

How To Publish MediatR Notifications In Parallel

.NET Core MediatR with Notification(Publish) and Behaviors

The Power of MediatR Notifications in CQRS and Microservices 

Nhận xét

Bài đăng phổ biến từ blog này

[ASP.NET MVC] Authentication và Authorize

Một trong những vấn đề bảo mật cơ bản nhất là đảm bảo những người dùng hợp lệ truy cập vào hệ thống. ASP.NET đưa ra 2 khái niệm: Authentication và Authorize Authentication xác nhận bạn là ai. Ví dụ: Bạn có thể đăng nhập vào hệ thống bằng username và password hoặc bằng ssh. Authorization xác nhận những gì bạn có thể làm. Ví dụ: Bạn được phép truy cập vào website, đăng thông tin lên diễn đàn nhưng bạn không được phép truy cập vào trang mod và admin.

ASP.NET MVC: Cơ bản về Validation

Validation (chứng thực) là một tính năng quan trọng trong ASP.NET MVC và được phát triển trong một thời gian dài. Validation vắng mặt trong phiên bản đầu tiên của asp.net mvc và thật khó để tích hợp 1 framework validation của một bên thứ 3 vì không có khả năng mở rộng. ASP.NET MVC2 đã hỗ trợ framework validation do Microsoft phát triển, tên là Data Annotations. Và trong phiên bản 3, framework validation đã hỗ trợ tốt hơn việc xác thực phía máy khách, và đây là một xu hướng của việc phát triển ứng dụng web ngày nay.

Tổng hợp một số kiến thức lập trình về Amibroker

Giới thiệu về Amibroker Amibroker theo developer Tomasz Janeczko được xây dựng dựa trên ngôn ngữ C. Vì vậy bộ code Amibroker Formula Language sử dụng có syntax khá tương đồng với C, ví dụ như câu lệnh #include để import hay cách gói các object, hàm trong các block {} và kết thúc câu lệnh bằng dấu “;”. AFL trong Amibroker là ngôn ngữ xử lý mảng (an array processing language). Nó hoạt động dựa trên các mảng (các dòng/vector) số liệu, khá giống với cách hoạt động của spreadsheet trên excel.