Skip to content

Commit

Permalink
Merge pull request #37 from xilec/channel-work-principle
Browse files Browse the repository at this point in the history
Added in docs main work principle of channel
  • Loading branch information
zeenix authored Mar 26, 2021
2 parents d0635d1 + b46629c commit 4f78290
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ https://crates.io/crates/async-channel)
[![Documentation](https://docs.rs/async-channel/badge.svg)](
https://docs.rs/async-channel)

An async multi-producer multi-consumer channel.
An async multi-producer multi-consumer channel, where each message can be received by only
one of all existing consumers.

There are two kinds of channels:

Expand Down
3 changes: 2 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
//! An async multi-producer multi-consumer channel.
//! An async multi-producer multi-consumer channel, where each message can be received by only
//! one of all existing consumers.
//!
//! There are two kinds of channels:
//!
Expand Down

0 comments on commit 4f78290

Please sign in to comment.