public HandlerTypesSubscriberExecutor(ILifetimeScope lifetimeScope)
     : base(
         lifetimeScope,
         typeof(MqHost).Assembly.GetResourceText($".{nameof(HandlerTypesSubscriberExecutor)}.lisp", true),
         null,
         true)
 {
     _mqProgram = this.LifetimeScope.Resolve <MqProgramBase>();
 }
Exemple #2
0
 public MessageTypePublisherExecutor(ILifetimeScope lifetimeScope)
     : base(
         lifetimeScope,
         typeof(MqHost).Assembly.GetResourceText($".{nameof(MessageTypePublisherExecutor)}.lisp", true),
         null,
         true)
 {
     _mqProgram = this.LifetimeScope.Resolve <MqProgramBase>();
 }