1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-04-03 01:56:12 +02:00

Rephrase when send blocks (#792)

* Rephrase when `send` blocks

From a discussion with @hueich in #786: https://github.com/google/comprehensive-rust/pull/786#discussion_r1224850499.
This commit is contained in:
Martin Geisler 2023-06-11 15:20:33 +02:00 committed by GitHub
parent 56c1a6e55e
commit 9cf55893ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
# Bounded Channels
Bounded and synchronous channels make `send` block the current thread:
With bounded (synchronous) channels, `send` can block the current thread:
```rust,editable
use std::sync::mpsc;
@ -25,3 +25,11 @@ fn main() {
}
}
```
<details>
* Calling `send` will block the currnet thread until there is space in the channel for the new message. The thread can be blocked indefinitely if there is nobody who reads from the channel.
* A call to `send` will abort with an error (that is why it returns `Result`) if the channel is closed. A channel is closed when the receiver is dropped.
* A bounded channel with a size of zero is called a "rendezvous channel". Every send will block the current thread until another thread calls `read`.
</details>