Example #1
0
 public MessageBroker(ILifetimeScope lifetimeScope, MessagePublishingChildScopeBehaviour childScopeBehaviour)
 {
     _eventBroker   = new EventBroker(lifetimeScope, childScopeBehaviour);
     _requestBroker = new RequestBroker(lifetimeScope, childScopeBehaviour);
 }
Example #2
0
 public RequestBroker(ILifetimeScope lifetimeScope, MessagePublishingChildScopeBehaviour childScopeBehaviour)
 {
     _lifetimeScope       = lifetimeScope;
     _childScopeBehaviour = childScopeBehaviour;
 }