11 lines
225 B
C#
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; }
|
|
}
|