mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-10 17:59:38 +08:00
10 lines
289 B
C#
10 lines
289 B
C#
using BuildingBlocks.EventStoreDB.Events;
|
|
using MediatR;
|
|
|
|
namespace BuildingBlocks.EventStoreDB.Projections;
|
|
|
|
public interface IProjectionProcessor
|
|
{
|
|
Task ProcessEventAsync<T>(StreamEvent<T> streamEvent, CancellationToken cancellationToken = default)
|
|
where T : INotification;
|
|
} |