You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! New to Monoio here. I was wondering how message passing works in monoio.
In Seastar, a core can communicate between cores via calls to submit_to(other_core, [] {...}) (link to Seastar's message passing doc). Is there an equivalent mechanism in monoio?
The text was updated successfully, but these errors were encountered:
Currently no, there's no worker/thread manager in monoio now. The connections between threads are hidden, but can be used with channel.
Adding something like submit_to should be useful. Before the runtime providing this feature, you can use channel to impl it(remember enable sync feature).
Hello! New to Monoio here. I was wondering how message passing works in monoio.
In Seastar, a core can communicate between cores via calls to
submit_to(other_core, [] {...})
(link to Seastar's message passing doc). Is there an equivalent mechanism in monoio?The text was updated successfully, but these errors were encountered: