-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Make core::future sendable #3140
Comments
I just poked at this for a bit. Because the task builder includes a notification channel, and a port gets stored somewhere, we basically need to replace these with pipes. This makes task_builder non-copyable (which we want), but we can't do this yet because we don't have moveable self. Thus, I suspect this bug depends on #2585, or at least we have to be willing to get rid of the |
Fixed by #3421 |
fix clippy::redundant_clones warnings.
add some more gamma function tests
Bumps [tests/perf/s2n-quic](https://github.com/aws/s2n-quic) from `2d5e891` to `5f88e54`.
They can be built from sendable pipe endpoints now (instead of unsendable ports), but they still contain boxes. Once futures are sendable they should start being much more useful and composable.
The text was updated successfully, but these errors were encountered: