From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 10.66.142.167 with SMTP id rx7mr3697397pab.12.1412958216669; Fri, 10 Oct 2014 09:23:36 -0700 (PDT) X-Received: by 10.182.45.134 with SMTP id n6mr10681obm.36.1412958216512; Fri, 10 Oct 2014 09:23:36 -0700 (PDT) Path: border2.nntp.dca1.giganews.com!nntp.giganews.com!uq10no8046603igb.0!news-out.google.com!rp1ni26922igb.0!nntp.google.com!h18no4316740igc.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Fri, 10 Oct 2014 09:23:36 -0700 (PDT) Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=130.113.46.8; posting-account=Lb5doAoAAAAWHET3z2_nBVbFSXaZQG1V NNTP-Posting-Host: 130.113.46.8 User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <5c3b6561-8a9e-4c82-b7f9-7aba466bac12@googlegroups.com> Subject: Broadcasting message to OTHER NODES From: Stribor40 Injection-Date: Fri, 10 Oct 2014 16:23:36 +0000 Content-Type: text/plain; charset=ISO-8859-1 Xref: number.nntp.giganews.com comp.lang.ada:189622 Date: 2014-10-10T09:23:36-07:00 List-Id: I have 6 nodes and each of those nodes have 2 partners. So for example... task myNode is entry TurnOff; entry LetMeKnow; end myNode; I am trying to wrap my head around something like this ....so one of those nodes can send signal to those 2 partners to turn off the lights and let me know about it which is fine...The problem is that now those 2 partners also have 2 partners that need to be let known to turn the lights off and let me know about it. Can someone please point me or suggest how to go about this please.