TRANCHE EXECUTION WORKS

This commit is contained in:
Tim Olson
2023-10-29 16:53:07 -04:00
parent 180d4e0441
commit 3bf6cab98e
13 changed files with 109 additions and 27 deletions

View File

@@ -19,7 +19,6 @@ export class SingletonCoroutine {
}
async onTimeout(self) {
self.timeout = null
try {
await self.f(...self.args)
}
@@ -29,6 +28,9 @@ export class SingletonCoroutine {
else
console.error(e)
}
finally {
self.timeout = null
}
}
}