-
Notifications
You must be signed in to change notification settings - Fork 341
Open
Labels
api designOpen design questionsOpen design questionsfeedback wantedNeeds feedback from usersNeeds feedback from users
Description
As per async-rs/futures-timer#39 it seems there are some scenarios where having an AtomicWaker
type available would be useful.
It's somewhat niche, but I was wondering if it would perhaps make sense to expose it? Thoughts?
If we do we should probably create a separate crate so we can share the impl with futures-timer
. Thanks!
Metadata
Metadata
Assignees
Labels
api designOpen design questionsOpen design questionsfeedback wantedNeeds feedback from usersNeeds feedback from users
Type
Projects
Milestone
Relationships
Development
Select code repository
Activity
skade commentedon Oct 17, 2019
Hm, I'm not quite sure if we should expose that or if we should maybe have a second library as a "futures development kit". Though
futures-util
is already that.ghost commentedon Oct 17, 2019
Note that a good chunk of
async-std
uses no I/O and no dependencies (or just really small dependencies). Perhaps we should think of factoring that out intoasync-core
or putting everything else behind a feature flag (perhaps namedstd
).