We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8dee34 commit afbf8c8Copy full SHA for afbf8c8
tokio/src/sync/mod.rs
@@ -442,10 +442,9 @@
442
//! [cooperative scheduling](crate::task#cooperative-scheduling) to avoid
443
//! starvation. This feature does not apply when used from non-Tokio runtimes.
444
//!
445
-//! The only exception to runtime compatibility is the
446
-//! [`mpsc::Sender::send_timeout`] method, which can't be called from non-Tokio
447
-//! runtimes. However, [`Senders`](mpsc::Sender) can still be moved between
448
-//! different instances of the Tokio runtime.
+//! As an exception, methods ending in `_timeout` are not runtime agnostic
+//! because they require access to the Tokio timer. See the documentation of
+//! each `*_timeout` method for more information on its use.
449
450
cfg_sync! {
451
/// Named future types.
0 commit comments