Exemplo n.º 1
0
 public ShareLabelMonitor(IShareLabelMonitorDB db, IShareTaskFactory factory)
 {
     this.db      = db;
     this.factory = factory;
     this.timer   = new NoReentrantTimer(Timer_elapsed, null, 3000, 10000);
 }
Exemplo n.º 2
0
 public ShareLabelMonitor()
 {
     this.db      = new ShareLabelMonitorDB();
     this.factory = new ShareTaskFactory();
     this.timer   = new NoReentrantTimer(Timer_elapsed, null, 3000, 10000);
 }