Example #1
0
 public SyncWindow(ISyncMessageReceiver syncMsgReceiver, ISyncNotificationReceiver syncNoteReceiver)
 {
     this.syncMsgReceiver  = syncMsgReceiver;
     this.syncNoteReceiver = syncNoteReceiver;
     base.CreateControl();
     this.notificationDelegate         = new NotificationDelegate(this.OnSyncNotification);
     this.notificationQueueDelegate    = new NotificationQueueDelegate(this.OnSyncQueueNotification);
     this.routerNotificationDelegate   = new RouterNotificationDelegate(this.OnSyncRouterNotification);
     this.stateChangedDelegate         = new StateChangedDelegate(this.OnAdsStateChanged);
     this.symbolVersionChangedDelegate = new SymbolVersionChangedDelegate(this.OnSymbolVersionChanged);
 }
Example #2
0
 public SyncWindow(ISyncNotificationReceiver syncNoteReceiver)
 {
     this.syncNoteReceiver = syncNoteReceiver;
     base.CreateControl();
     this.notificationQueueDelegate = new NotificationQueueDelegate(this.OnSyncQueueNotification);
 }