using LiteCharms.Features.Abstractions; namespace LiteCharms.Features.ServiceBus.Abstractions; public abstract class EventBusQueueBase { protected readonly Channel channel = Channel.CreateBounded(Constants.QueueBounds); public ChannelWriter Outgoing => channel.Writer; public ChannelReader Incoming => channel.Reader; }