-
The pion wasm stuff, is there a way to run goroutines in the browser? if so, i'm looking for an example/repo. I've found a few small snippets referencing go_scheduler(). Is it as simple as calling go_scheduler() from request_animation()? |
Beta Was this translation helpful? Give feedback.
Answered by
Sean-Der
Oct 6, 2021
Replies: 1 comment
-
Hey @unicomp21 The Pion WASM implementation really just does FFI and uses the browsers WebRTC implementation. I haven't done a lot of WASM work, but AFAIK Go just runs with a single proc (thread). |
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
Hey @unicomp21
The Pion WASM implementation really just does FFI and uses the browsers WebRTC implementation. I haven't done a lot of WASM work, but AFAIK Go just runs with a single proc (thread).