Пример #1
0
 public DispatchSink(string senderName, DispatchEngine dispatcher)
 {
     if (dispatcher == null) throw new ArgumentNullException("dispatcher");
     
     this.dispatcher = dispatcher;
     this.senderName = senderName;
 }
Пример #2
0
 public Context()
 {
     SenderHolder = new SenderHolder();
     NotifyService = new NotifyRegistryImpl(this);
     NotifyEngine = new NotifyEngine(this);
     DispatchEngine = new DispatchEngine(this);
 }
Пример #3
0
 public Context()
 {
     NotifyEngine = new NotifyEngine(this);
     DispatchEngine = new DispatchEngine(this);
 }