-
Notifications
You must be signed in to change notification settings - Fork 29
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
Thread local, !Send + !Sync
version of Event
#47
Comments
Previously, I was working on a thread-unsafe async framework called That being said, |
Do you mean this: rust-lang/libs-team#191 ? |
If this is the case, maybe |
I've released Since we are not planning on adding an equivalent structure to
|
Does it make sense to have a
!Send + !Sync
version ofEvent
, to be used withLocalExecutor
? Feels silly to pay the cost of thread synchronization when everything is happening on a single thread.(and also a thread local version of
Mutex
andRwLock
, which IIUC is based onevent_listener
?)The text was updated successfully, but these errors were encountered: