-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
feat(tokio_util): Stabilise JoinMap #7075
Open
conradludgate
wants to merge
4
commits into
tokio-rs:master
Choose a base branch
from
conradludgate:conrad/stabalise-joinmap
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+22
−19
Open
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,10 +29,6 @@ use tokio::task::{AbortHandle, Id, JoinError, JoinSet, LocalSet}; | |
/// | ||
/// When the `JoinMap` is dropped, all tasks in the `JoinMap` are immediately aborted. | ||
/// | ||
/// **Note**: This type depends on Tokio's [unstable API][unstable]. See [the | ||
/// documentation on unstable features][unstable] for details on how to enable | ||
/// Tokio's unstable features. | ||
/// | ||
/// # Examples | ||
/// | ||
/// Spawn multiple tasks and wait for them: | ||
|
@@ -96,11 +92,10 @@ use tokio::task::{AbortHandle, Id, JoinError, JoinSet, LocalSet}; | |
/// ``` | ||
/// | ||
/// [`JoinSet`]: tokio::task::JoinSet | ||
/// [unstable]: tokio#unstable-features | ||
/// [abort]: fn@Self::abort | ||
/// [abort_matching]: fn@Self::abort_matching | ||
/// [contains]: fn@Self::contains_key | ||
#[cfg_attr(docsrs, doc(cfg(all(feature = "rt", tokio_unstable))))] | ||
#[cfg_attr(docsrs, doc(cfg(feature = "rt")))] | ||
pub struct JoinMap<K, V, S = RandomState> { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Once you add the |
||
/// A map of the [`AbortHandle`]s of the tasks spawned on this `JoinMap`, | ||
/// indexed by their keys and task IDs. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm. I'll have to think about what implications this has for our MSRV.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hashbrown 0.14.0 has a
rust-version = "1.64.0"
.hashbrown 0.15.2 has a
rust-version = "1.65.0"
.It doesn't seem to have an explicit MSRV policy, but it is inline with tokio-util's 1.70.0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm okay with this, but I don't want to require hashbrown if you're just using the
TaskTracker
. Can you add ajoin_map
feature?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That seems reasonable. Will do