Coder Social home page Coder Social logo

Comments (3)

mroderick avatar mroderick commented on June 10, 2024

I am not entirely sure I understand what you're suggesting.

Could you write a code example of how you would like to use it?

from pubsubjs.

Ognian avatar Ognian commented on June 10, 2024

lets say we have to subscribers
var f1 = PubSub.subscribe("level1", function (msg, data) {
...//do soemthing
return true;
});
var f2 = PubSub.subscribe("level1.level2", function (msg, data) {
...//do soemthing
return true;
});
calling
var r = PubSub.publishSync("level1.level2");
shall make r be true
changing f1 to return false should make r be false and shall avoid calling f2
In that case the call chain of the subscribers is from the most general one to the most concrete one ...
If the 2 subscribers would be both on the same level than the order does not matter, but as soon as one fails (return false) the others would not be called...
Does this help?
Ognian

from pubsubjs.

mroderick avatar mroderick commented on June 10, 2024

Thank you for elaborating.

Your proposal would move PubSubJS very much closer to traditional, tightly coupled event handling systems (Observer pattern) and away from the ideal of decoupled publishers and subscribers (Mediator pattern).

Currently, there is no contract of order of message delivery and no synchronisation coupling (messages are delivered asynchronously), which promotes loose coupling. This is awesome, but not necessarily appropriate for every situation.

Perhaps what you really need is the Observer pattern?

Addy Osmany has a great article about the Observer pattern, with a subsection about the differences between Observer and Publish/Subscribe.

For more details about Publish/Subscribe, I recommend The Many Faces of Publish/Subscribe.

Currently, PubSubJS at least manages to do synchronisation decoupling, I'd like it to stay that way.

As always, there is the fork button :-)

from pubsubjs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.