@xuda.io/runtime-bundle 1.0.823 → 1.0.824
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/js/xuda-runtime-slim.js
CHANGED
|
@@ -8476,15 +8476,17 @@ func.UI.worker.init = async function (SESSION_ID) {
|
|
|
8476
8476
|
|
|
8477
8477
|
this.attempt++;
|
|
8478
8478
|
}
|
|
8479
|
-
return job_iterator();
|
|
8479
|
+
// return job_iterator();
|
|
8480
8480
|
};
|
|
8481
|
-
job_iterator();
|
|
8481
|
+
// job_iterator();
|
|
8482
8482
|
// this._interval = setInterval(() => {
|
|
8483
8483
|
// if (typeof UI_WORKER_OBJ.stat === 'undefined' || UI_WORKER_OBJ.stat === 'undefined' || UI_WORKER_OBJ.stat === null) {
|
|
8484
8484
|
// job_iterator();
|
|
8485
8485
|
// }
|
|
8486
8486
|
// }, 1);
|
|
8487
8487
|
|
|
8488
|
+
this._interval = setInterval(job_iterator, 1);
|
|
8489
|
+
|
|
8488
8490
|
setInterval(async function () {
|
|
8489
8491
|
func.UI.ds_garbage_collector();
|
|
8490
8492
|
}, 10000);
|
|
@@ -8477,15 +8477,17 @@ func.UI.worker.init = async function (SESSION_ID) {
|
|
|
8477
8477
|
|
|
8478
8478
|
this.attempt++;
|
|
8479
8479
|
}
|
|
8480
|
-
return job_iterator();
|
|
8480
|
+
// return job_iterator();
|
|
8481
8481
|
};
|
|
8482
|
-
job_iterator();
|
|
8482
|
+
// job_iterator();
|
|
8483
8483
|
// this._interval = setInterval(() => {
|
|
8484
8484
|
// if (typeof UI_WORKER_OBJ.stat === 'undefined' || UI_WORKER_OBJ.stat === 'undefined' || UI_WORKER_OBJ.stat === null) {
|
|
8485
8485
|
// job_iterator();
|
|
8486
8486
|
// }
|
|
8487
8487
|
// }, 1);
|
|
8488
8488
|
|
|
8489
|
+
this._interval = setInterval(job_iterator, 1);
|
|
8490
|
+
|
|
8489
8491
|
setInterval(async function () {
|
|
8490
8492
|
func.UI.ds_garbage_collector();
|
|
8491
8493
|
}, 10000);
|