PureMVC Architects Lounge

Announcements and General Discussion => Architecture => Topic started by: davidTikva on January 27, 2011, 11:57:36



Title: Filtering
Post by: davidTikva on January 27, 2011, 11:57:36
Hello, I'm building a pureMVC based Application with multiCore version and pipes and I wanted to know what is the right/best way to send a message from the shell through the TeeSpleet to only one module.

if the shell send a message through the TeeSplit - everyone get the message and need to check if it's for them.
it's a little bit ineffective I think.

so what is the right way?

thanks !


Title: Re: Filtering
Post by: puremvc on February 01, 2011, 01:23:01
Add pipes between any cores that you want to communicate with each other directly, and talk to the core on its own pipe.

A TeeSplit is useful for 'broadcast' messages you want go to all the cores connected to its outputs.

-=Cliff>