2025-07-23 16:18:05 +03:30

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;
}