scheduling
#55
-
|
Is there some way to do typescript deferred scheduling based on time slicing via performance.now() in the browser? the target use case is video games, and runtime generation of assets using idle cpu. Perhaps a package already exists which I'm not aware of? |
Beta Was this translation helpful? Give feedback.
Answered by
rbuckton
Sep 13, 2022
Replies: 1 comment
-
|
I imagine there are some existing APIs that could potentially help, such as |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
unicomp21
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I imagine there are some existing APIs that could potentially help, such as
window.requestIdleTimeout, but this isn't an area I'm actively investigating.