summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlice Ryhl <alice@ryhl.io>2020-10-26 11:44:46 +0100
committerGitHub <noreply@github.com>2020-10-26 11:44:46 +0100
commita9da220923bbd329e367ac31de229cc56d470b8d (patch)
tree8da5fb0291c53c1532c3ce494575716dd8b92429
parent1c28c3b0a867b0147293055fe648d1185f9648a9 (diff)
oneshot: update closed() docs to use tokio::select! (#3050)
-rw-r--r--tokio/src/sync/oneshot.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/tokio/src/sync/oneshot.rs b/tokio/src/sync/oneshot.rs
index 951ab71d..e0a9e793 100644
--- a/tokio/src/sync/oneshot.rs
+++ b/tokio/src/sync/oneshot.rs
@@ -285,8 +285,6 @@ impl<T> Sender<T> {
/// use tokio::sync::oneshot;
/// use tokio::time::{self, Duration};
///
- /// use futures::{select, FutureExt};
- ///
/// async fn compute() -> String {
/// // Complex computation returning a `String`
/// # "hello".to_string()
@@ -297,12 +295,14 @@ impl<T> Sender<T> {
/// let (mut tx, rx) = oneshot::channel();
///
/// tokio::spawn(async move {
- /// select! {
- /// _ = tx.closed().fuse() => {
+ /// tokio::select! {
+ /// _ = tx.closed() => {
/// // The receiver dropped, no need to do any further work
/// }
- /// value = compute().fuse() => {
- /// tx.send(value).unwrap()
+ /// value = compute() => {
+ /// // The send can fail if the channel was closed at the exact same
+ /// // time as when compute() finished, so just ignore the failure.
+ /// let _ = tx.send(value);
/// }
/// }
/// });