Beispiel #1
0
 public EventFactory(
     MessagePipeOptions options,
     MessagePipeDiagnosticsInfo diagnosticsInfo,
     FilterAttachedMessageHandlerFactory handlerFactory,
     FilterAttachedAsyncMessageHandlerFactory asyncHandlerFactory)
 {
     this.options             = options;
     this.diagnosticsInfo     = diagnosticsInfo;
     this.handlerFactory      = handlerFactory;
     this.asyncHandlerFactory = asyncHandlerFactory;
 }
Beispiel #2
0
 public AsyncMessageBroker(AsyncMessageBrokerCore <TKey, TMessage> core, FilterAttachedAsyncMessageHandlerFactory handlerFactory)
 {
     this.core           = core;
     this.handlerFactory = handlerFactory;
 }
Beispiel #3
0
 public ScopedAsyncMessageBroker(ScopedAsyncMessageBrokerCore <TKey, TMessage> core, FilterAttachedAsyncMessageHandlerFactory handlerFactory)
     : base(core, handlerFactory)
 {
 }
Beispiel #4
0
 public SingletonAsyncMessageBroker(SingletonAsyncMessageBrokerCore <TMessage> core, FilterAttachedAsyncMessageHandlerFactory handlerFactory)
     : base(core, handlerFactory)
 {
 }