aboutsummaryrefslogtreecommitdiff
path: root/embassy-sync/README.md
diff options
context:
space:
mode:
authorRafael Bachmann <[email protected]>2024-08-18 10:36:04 +0200
committerGitHub <[email protected]>2024-08-18 10:36:04 +0200
commita91de8d6b02e9ea69e9f2c62f11f590c64e771a2 (patch)
tree8e2542c428828c3062d9b07c389ee70f3f4ad062 /embassy-sync/README.md
parentcd4e199065bef50637d61622318c6dd1b5443f9f (diff)
Fix link to PriorityChannel
Fix: #2899
Diffstat (limited to 'embassy-sync/README.md')
-rw-r--r--embassy-sync/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-sync/README.md b/embassy-sync/README.md
index dec1fbc32..97a663d6d 100644
--- a/embassy-sync/README.md
+++ b/embassy-sync/README.md
@@ -5,7 +5,7 @@ An [Embassy](https://embassy.dev) project.
5Synchronization primitives and data structures with async support: 5Synchronization primitives and data structures with async support:
6 6
7- [`Channel`](channel::Channel) - A Multiple Producer Multiple Consumer (MPMC) channel. Each message is only received by a single consumer. 7- [`Channel`](channel::Channel) - A Multiple Producer Multiple Consumer (MPMC) channel. Each message is only received by a single consumer.
8- [`PriorityChannel`](channel::priority::PriorityChannel) - A Multiple Producer Multiple Consumer (MPMC) channel. Each message is only received by a single consumer. Higher priority items are shifted to the front of the channel. 8- [`PriorityChannel`](channel::priority_channel::PriorityChannel) - A Multiple Producer Multiple Consumer (MPMC) channel. Each message is only received by a single consumer. Higher priority items are shifted to the front of the channel.
9- [`PubSubChannel`](pubsub::PubSubChannel) - A broadcast channel (publish-subscribe) channel. Each message is received by all consumers. 9- [`PubSubChannel`](pubsub::PubSubChannel) - A broadcast channel (publish-subscribe) channel. Each message is received by all consumers.
10- [`Signal`](signal::Signal) - Signalling latest value to a single consumer. 10- [`Signal`](signal::Signal) - Signalling latest value to a single consumer.
11- [`Mutex`](mutex::Mutex) - Mutex for synchronizing state between asynchronous tasks. 11- [`Mutex`](mutex::Mutex) - Mutex for synchronizing state between asynchronous tasks.