-
Notifications
You must be signed in to change notification settings - Fork 158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: Monoio Runtime #1011
Comments
👋 Thanks for opening this issue! Get help or engage by:
|
|
monoio is a little bit different about If it panics, the runtime just destroyed. There won't be any other task to examine the JoinHandle of the task in the destroyed runtime. And if send the JoinHandle to another thread(also another monoio runtime) to poll it with Because of this issue, I can not tell what Meanwhile, according to the API doc, monoio |
Looks like this issue can be closed now:) |
Aye! Thank you for your great work! |
Is your feature request related to a problem? Please describe.
I want to use
openraft
with monoio.Describe the solution you'd like
A feature flag with a
MonoioAsyncRuntime
available.Additional context
I started a draft over this on #1010 but there are some issues:
is_panic
&abort
can be a little more complex to implement as inmonoio
and when you useio-uring
you register to the kernel when you start reading/writing with fd. For monoio, you have to pass aCanceller
. to be mapped on the operation you do on those IO to be able to have a proper cancellation.The text was updated successfully, but these errors were encountered: