From ee21f21e893eb5bbcf8566c60d2ae388939dcaed Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Fri, 11 Aug 2023 16:28:37 -0300 Subject: [PATCH] Added a follow up --- content/code/thinking-about-rust-actors/index.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/content/code/thinking-about-rust-actors/index.md b/content/code/thinking-about-rust-actors/index.md index ba5acbc..9e78f95 100644 --- a/content/code/thinking-about-rust-actors/index.md +++ b/content/code/thinking-about-rust-actors/index.md @@ -117,3 +117,8 @@ let (actor2_pid, actor2_channel) = actor2::run(); ``` ... which is kinda verbose, but does work. + +I have some ideas to make this part more fluent, but I need to do some more +exploration about the topic (specially since I think we can leverage the type +system to now allow actors with different outputs to connect). Once I get those +hammered down, I'll get a follow up post.