#!/usr/bin/env -S node --no-warnings --loader ts-node/esm /** * Multiple Outbound Communications Test * * This test file documents a known architectural limitation with nested mailbox * communication. The original test case involved: * - A consumer sending DING to mainMailbox * - mainMailbox's child actor sending DING to serviceMailbox * - serviceMailbox responding with DONG * * The limitation: When serviceMailbox sends DONG, it goes to mainMailbox's * address (the sender), not directly to mainMailbox's child actor. Since * mainMailbox is Busy waiting for ACTOR_IDLE, the DONG gets queued but * the child never receives it, causing a deadlock. * * This is a known limitation that would require architectural changes to fix. * The core Mailbox functionality is tested in integration-v5.spec.ts. */ export {}; //# sourceMappingURL=multiple-outbound-communications.test.d.ts.map