Giter Club home page Giter Club logo

Comments (4)

davidszotten avatar davidszotten commented on July 23, 2024

Hi (and thanks)

in nameko, each service "owns" its own events, so in that sense it doesn't quite make sense to talk about "the same" event from different services. However, if the apis (event data) are compatible, you can stack the entrypoint (any method can be exposed as multiple entyrpoints), e.g.

@event_handler("service_a", "event")
@event_handler("service_b", "event")
def bla(self, payload):
    pass

would that do?

from nameko.

chassing avatar chassing commented on July 23, 2024

hi,

yes that's also a solution. I will use my own EventHandler to avoid code duplications.

thx,
chris

from nameko.

davidszotten avatar davidszotten commented on July 23, 2024

sure. one of our design goals is to keep things composable enough that you can replace parts to suit your exact use-case

note that the decorator implementation you are overriding is designed to work for any entrypoint. since you have a concrete use-case, you can simplify it (e.g. cutting out the second half since an event-handler decorator always takes arguments)

from nameko.

mattbennett avatar mattbennett commented on July 23, 2024

@chassing feel free to tell me to mind my own business but I would recommend against having a custom subclass like this, for a number of reasons:

  • Entrypoints were designed to stack for exactly this use-case.
  • By overloading Entrypoint.decorator you've made your application brittle to changes in this "internal" nameko code.
  • (Subjective but) I don't consider multiple @event_handler decorators to be duplications. Each one is an explicit declaration, and having them separate will make for easier refactoring in the future. If you're listening to the same event from more than a couple of services you should consider whether your service architecture is correct.
  • Adding ~25 lines of complex decorator code is a lot less maintainable than "duplicating" these simple event handler declarations.

Just my 2ยข. Can you write about what your specific use-case is?

from nameko.

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.