Files
components/LiteCharms.Features/ServiceBus/Abstractions/IEventBusQueue.cs
T
2026-05-13 20:06:24 +02:00

11 lines
225 B
C#

using LiteCharms.Features.Abstractions;
namespace LiteCharms.Features.ServiceBus.Abstractions;
public interface IEventBusQueue
{
ChannelWriter<IEvent> Outgoing { get; }
ChannelReader<IEvent> Incoming { get; }
}