How do I access Servo/IPC_channel? #822
patientplatypus6
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm working on a project where I use
Servo/IPC_channel
as a server and then load child processes. This is useful if I have several libraries that run on an event loop as event loops require that the thread run on a main process (which is mandatory on iOS for performance related issues and I want to stay away from Docker containers for the moment). I have an example that works withRust/Ice
in order to load a GUI here (https://github.com/patientplatypus6/ipciceexample). What I'm looking for is a way to run a script that runs Rust code from within the event loop so I can access theIPC_Channel
. I haven't yet taken a look through all the documentation, but if anyone knows off hand please let me know. Thanks.Beta Was this translation helpful? Give feedback.
All reactions