Closed vinayk047 closed 6 years ago
yes this is correct behaviour
oh sorry, you are connecting these streams wrong!
you cannot pipe as to bs AND pipe cs to bs. you should use each stream only once! bs should actually be bs1 bs2 bs3
as = a.createStream()
bs1 = b.createStream()
bs2 = b.createStream()
cs = c.createStream()
as.pipe(bs1).pipe(as)
cs.pipe(bs2).pipe(cs)
//etc...
@dominictarr, Ahh ok. thank you for the answer and a awesome module.
I've following network setup
1. If i update model A & E at same time than only changes of model A are propagated in network check following image
2. If u update model E after few seconds than the changes are propagated in network; check following image.
is this normal behaviour or a bug?