Exemplo n.º 1
0
		private TreeTaskManager()
		{
			this._schedulingLock   = new object();
			this._runningTasksLock = new object();
			this._treeControl      = null;
			this.ProgressManager   = null;
			this._nodeCounter      = null;
			this.RunningTasks      = new ObservableConcurrentDictionary<long, TreeTask>();
		}
Exemplo n.º 2
0
 private TreeTaskManager()
 {
     this._schedulingLock   = new object();
     this._runningTasksLock = new object();
     this._treeControl      = null;
     this.ProgressManager   = null;
     this._nodeCounter      = null;
     this.RunningTasks      = new ObservableConcurrentDictionary <long, TreeTask>();
 }
Exemplo n.º 3
0
		public TreeTaskManager(ConnectionTabControl treeControl) : this()
		{
			this.ProgressManager = new TreeTaskProgressManager(this);
			this._treeControl    = treeControl;
			this._nodeCounter    = new NodeCounter(treeControl._model);
		}
Exemplo n.º 4
0
 public TreeTaskManager(ConnectionTabControl treeControl) : this()
 {
     this.ProgressManager = new TreeTaskProgressManager(this);
     this._treeControl    = treeControl;
     this._nodeCounter    = new NodeCounter(treeControl._model);
 }