You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure if this is a postal bug or I'm using an anti-pattern. The problems is when I trying to publish the same topic with different data inside a subscriber function, only the invoked subscribers will received that new message. This only happens in the first time the subscriber get invoked.
I'm not sure if this is a postal bug or I'm using an anti-pattern. The problems is when I trying to publish the same topic with different data inside a subscriber function, only the invoked subscribers will received that new message. This only happens in the first time the subscriber get invoked.
code to reproduce:
Current result is:
comp3
didn't receive the messageupdate {color: "green"}
while I'm expecting the following result(atomic publishing, maybe a message queue could help?):
or even the following result is acceptable(just make sure every message is delivered to every subscriber):
as I separate cache setup from invoking subscribers
The text was updated successfully, but these errors were encountered: