diff options
| author | YunShu <im@yunshu.site> | 2024-04-08 22:07:26 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-08 22:07:26 +0800 |
| commit | f7145343937acfd9039ee7f4f562731a44bdf33a (patch) | |
| tree | 62c121fd9f1924fff83a0082753ce824de3d58b4 /.github/workflows | |
| parent | 459c52137ac7b8aa8500a46f04b0e848ba48a969 (diff) | |
docs: add more info in threads
info.toml:
```toml
[[exercises]]
name = "threads3"
path = "exercises/threads/threads3.rs"
mode = "test"
hint = """
An alternate way to handle concurrency between threads is to use
a mpsc (multiple producer, single consumer) channel to communicate.
With both a sending end and a receiving end, it's possible to
send values in one thread and receive them in another.
Multiple producers are possible by using clone() to create a duplicate
of the original sending end.
See https://doc.rust-lang.org/book/ch16-02-message-passing.html for more info.
"""
```
threads3'hint contains this link, so it should be placed in Further Information
Diffstat (limited to '.github/workflows')
0 files changed, 0 insertions, 0 deletions
