-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
docs: add link to PollSender #3613
docs: add link to PollSender #3613
Conversation
Signed-off-by: Zahari Dichev <zaharidichev@gmail.com>
tokio/src/sync/mpsc/bounded.rs
Outdated
/// Sends a value, waiting until there is capacity. | ||
/// Sends a value, waiting until there is capacity. In case you need a | ||
/// polling interface, use [`PollSender`]. |
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 would like the link to be in the same place in the docs as where I put the similar thing for Semaphore
.
tokio/src/sync/mpsc/bounded.rs
Outdated
@@ -332,6 +333,7 @@ impl<T> Sender<T> { | |||
/// | |||
/// [`close`]: Receiver::close | |||
/// [`Receiver`]: Receiver | |||
/// [`PollSender`]: https://docs.rs/tokio-util/0.6.4/tokio_util/sync/struct.PollSender.html |
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.
/// [`PollSender`]: https://docs.rs/tokio-util/0.6.4/tokio_util/sync/struct.PollSender.html | |
/// [`PollSender`]: https://docs.rs/tokio-util/0.6/tokio_util/sync/struct.PollSender.html |
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.
Why don't we just put /latest/ here instead of concrete version?
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.
The link may break if we move it or remove it in future versions of tokio-util
.
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.
Good to know, thanks!
tokio/src/sync/mpsc/bounded.rs
Outdated
/// To use the `Sender` in a poll function, you can use the [`PollSender`] | ||
/// utility. | ||
/// | ||
/// [`PollSender`]: https://docs.rs/tokio-util/0.6/tokio_util/sync/struct.PollSender.html |
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.
Put it on the struct, not the impl block.
Signed-off-by: Zahari Dichev <zaharidichev@gmail.com>
Motivation
There was no link to
PollSender
in mpsc::Sender::send docsSolution
Add link
Fix: #3611