acc0d44c7c
Internal service bus support enabled Added quartz support Reconfigured extensions
9 lines
164 B
C#
9 lines
164 B
C#
namespace LiteCharms.Abstractions;
|
|
|
|
public interface IEventBusQueue
|
|
{
|
|
ChannelWriter<IEvent> Outgoing { get; }
|
|
|
|
ChannelReader<IEvent> Incoming { get; }
|
|
}
|