mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-11 19:02:15 +08:00
11 lines
290 B
C#
11 lines
290 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;
|
|
}
|