job worker thread

This commit is contained in:
2025-02-07 11:38:12 -06:00
parent 86c0bbb065
commit 17e54ea4aa
48 changed files with 92 additions and 49 deletions
+5 -2
View File
@@ -58,8 +58,11 @@ public class JobWorker extends ControlledRunnable {
} else {
// execute the new job..
this.currentJob.executeJob(this.getThreadName());
this.currentJob = null;
//this.currentJob.executeJob(this.getThreadName());
if(this.currentJob != null) {
JobThread.startJobThread(this.currentJob);
this.currentJob = null;
}
}
Thread.yield();
}