Code Monkey home page Code Monkey logo

Comments (3)

mostlyobvious avatar mostlyobvious commented on July 3, 2024

Hey, it seems that we forgot to add subscribers to create such streams. New apps from template have them already enabled:

  # Subscribe event handlers below
  Rails.configuration.event_store.tap do |store|
    # store.subscribe(InvoiceReadModel.new, to: [InvoicePrinted])
    # store.subscribe(lambda { |event| SendOrderConfirmation.new.call(event) }, to: [OrderSubmitted])
    # store.subscribe_to_all_events(lambda { |event| Rails.logger.info(event.event_type) })

    store.subscribe_to_all_events(RailsEventStore::LinkByEventType.new)
    store.subscribe_to_all_events(RailsEventStore::LinkByCorrelationId.new)
    store.subscribe_to_all_events(RailsEventStore::LinkByCausationId.new)
  end

Behind the scenes these "of type" streams are made with linking: https://github.com/RailsEventStore/rails_event_store/blob/0c0e0d35fe5925c587b92c10e3707c9719fae61c/ruby_event_store/lib/ruby_event_store/link_by_metadata.rb#L43-L55

Enabling them for sample application would be a great contribution.

Perhaps Browser should also be improved to not suggest such browsing streams if they don't exist. That's something to be changed within RailsEventStore. Aside: application can suggest related streams for the Browser to display: https://railseventstore.org/docs/v2/browser/#related-streams

from ecommerce.

sardaukar avatar sardaukar commented on July 3, 2024

Thanks for the quick reply! Tangential question: why put the code for this example in lib and not app/{commands,events,aggregates}?

from ecommerce.

mostlyobvious avatar mostlyobvious commented on July 3, 2024

Thanks for the quick reply! Tangential question: why put the code for this example in lib and not app/{commands,events,aggregates}?

We're aiming to group by bounded contexts (i.e. kitchen, bathroom) in this application, rather than group by technical belonging (sinks, lights). Ultimately our goal is to lift those contexts outside rails application directory.

Related:

from ecommerce.

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.