-
If only local socket connections between modules/workers are needed, it seems weird to use a remote websocket proxy. Is there any existing way to implement this "loopback" posix socket between webworkers, maybe some way to proxy socket apis to worker apis? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Maybe not related, but similar issue #1422 (in my case it's INET socket) |
Beta Was this translation helpful? Give feedback.
-
No we don't currently have support for anything like that. In fact, there is nothing in the form of IPC for different emscripten-built modules. Currently would would have to do any wiring of multiple modules/instance yourself, emscripten doesn't do any of that for you. |
Beta Was this translation helpful? Give feedback.
No we don't currently have support for anything like that.
In fact, there is nothing in the form of IPC for different emscripten-built modules. Currently would would have to do any wiring of multiple modules/instance yourself, emscripten doesn't do any of that for you.