From ba0d88b4a12303935daed2e2b2f627dbf7261b18 Mon Sep 17 00:00:00 2001 From: zachary62 Date: Thu, 2 Jan 2025 01:00:53 +0000 Subject: [PATCH] enabled callout --- docs/communication.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/communication.md b/docs/communication.md index cf9cade..28301ca 100644 --- a/docs/communication.md +++ b/docs/communication.md @@ -15,8 +15,8 @@ Nodes and Flows **communicate** in two ways: If you know memory management, **Shared Store** is like a **heap** shared across function calls, while **Params** is like a **stack** assigned by parent function calls. -{: .Why-Not-Use-Other-Communication-Models-like-Message-Passing } -*Message passing* works well for simple DAGs, but with *nested graphs* (Flows containing Flows, repeated or cyclic calls), routing messages becomes hard to maintain. A shared store keeps the design simple and easy. +{: .note } +**Why not use other communication models like Message Passing?** *Message passing* works well for simple DAGs, but with *nested graphs* (Flows containing Flows, repeated or cyclic calls), routing messages becomes hard to maintain. A shared store keeps the design simple and easy. ---