aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorrafael <[email protected]>2024-07-27 14:57:46 +0200
committerrafael <[email protected]>2024-07-27 14:57:46 +0200
commit5d46b694ca60ee69d83eb2bd53f592b2c5b03d28 (patch)
treeef957b9e68f25e5d72dfaa3dc1cc707d0b0008d8 /examples
parent97125e53cdf425a146c6552a25164cdfd6075fe7 (diff)
add example to rp: orchestrate multiple tasks
Diffstat (limited to 'examples')
-rw-r--r--examples/rp/src/bin/orchestrate_tasks.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/rp/src/bin/orchestrate_tasks.rs b/examples/rp/src/bin/orchestrate_tasks.rs
index 1ef6b5fb6..b3c37de4c 100644
--- a/examples/rp/src/bin/orchestrate_tasks.rs
+++ b/examples/rp/src/bin/orchestrate_tasks.rs
@@ -4,7 +4,7 @@
4//! - use a channel to send messages between tasks, in this case here in order to have one task control the state of the system. 4//! - use a channel to send messages between tasks, in this case here in order to have one task control the state of the system.
5//! - use a signal to terminate a task. 5//! - use a signal to terminate a task.
6//! - use command channels to send commands to another task. 6//! - use command channels to send commands to another task.
7//! - use different ways to receive messages, from a straightforwar awaiting on one channel to a more complex awaiting on multiple channels. 7//! - use different ways to receive messages, from a straightforwar awaiting on one channel to a more complex awaiting on multiple futures.
8//! 8//!
9//! There are more patterns to orchestrate tasks, this is just one example. 9//! There are more patterns to orchestrate tasks, this is just one example.
10//! 10//!