Modified ThreadService & Scheduler to allow the web server to pass a delegate service such that all webapps will use one service for each function (reduction in threading and debug complexity).

This commit is contained in:
wcrisman
2014-08-30 15:43:30 -07:00
parent fba1f9f9b3
commit fa572dae03
15 changed files with 324 additions and 73 deletions

View File

@@ -525,7 +525,7 @@ public class Orb {
this.socket = socket;
this.name = name;
}//CloseSocketTask()//
public synchronized void evaluate() {
public synchronized void run() {
if(!hasRun) {
Scheduler.removeTask(this);
@@ -538,7 +538,7 @@ public class Orb {
hasRun = true;
}//if//
}//evaluate()//
}//run()//
}//CloseSocketTask//
/**