add example to rp: orchestrate multiple tasks

This commit is contained in:
rafael 2024-07-27 14:57:46 +02:00
parent 97125e53cd
commit 5d46b694ca

View File

@ -4,7 +4,7 @@
//! - use a channel to send messages between tasks, in this case here in order to have one task control the state of the system. //! - use a channel to send messages between tasks, in this case here in order to have one task control the state of the system.
//! - use a signal to terminate a task. //! - use a signal to terminate a task.
//! - use command channels to send commands to another task. //! - use command channels to send commands to another task.
//! - use different ways to receive messages, from a straightforwar awaiting on one channel to a more complex awaiting on multiple channels. //! - use different ways to receive messages, from a straightforwar awaiting on one channel to a more complex awaiting on multiple futures.
//! //!
//! There are more patterns to orchestrate tasks, this is just one example. //! There are more patterns to orchestrate tasks, this is just one example.
//! //!