Exemple #1
0
 public SyncLoader(JsWorker worker, ILoader loader)
 {
     this.worker     = worker;
     this.loader     = loader;
     this.scripts    = new Dictionary <string, string>();
     this.debugPaths = new Dictionary <string, string>();
     this.state      = new Dictionary <string, bool>();
 }
 public void SetWorkers([NotNull] JsWorker workerOne, [NotNull] JsWorker workerTwo)
 {
     this._workerOne = workerOne;
     this._workerTwo = workerTwo;
 }
Exemple #3
0
 public SyncProcess(JsWorker worker)
 {
     this.worker = worker;
 }
Exemple #4
0
 public void SetWorkers(JsWorker jsWorkerOne, JsWorker jsWorkerTwo)
 {
     this._jsWorkerOne = jsWorkerOne;
     this._jsWorkerTwo = jsWorkerTwo;
 }