goatslacker / alt

Isomorphic flux implementation
http://alt.js.org/
3.45k stars 322 forks source link

communication between 2 stores #583

Closed darul75 closed 8 years ago

darul75 commented 8 years ago

Hi all,

I have been looking into issues but is it possible that a store has some changes and another store should know about it, because it is my case and I do not know how to do :)

store 1 : something has changed store 2 : should know that something has changed into store 1

thanks,

Julien

taion commented 8 years ago

This is an anti-pattern in Flux. They should listen to the same action instead, and use something like waitFor if you need to manage ordering.