Coder Social home page Coder Social logo

Domain Events about domain-driven-hexagon HOT 2 CLOSED

sairyss avatar sairyss commented on May 21, 2024
Domain Events

from domain-driven-hexagon.

Comments (2)

Sairyss avatar Sairyss commented on May 21, 2024 5

I mean when publishing events with eventBus.publish(new Event()) there is no option to await for all events to finish.
So, imagine that you have a situation like this:

const user = new User();
this.eventBus.publish(new UserCreatedEvent()); //  <- this will not wait for events to finish
await this.repository.save(user);
return user; // <- consumer of your api will get a user before published events are executed

Now lets say that you have event handlers somewhere listening for a UserCreatedEvent, for example you need to create a wallet for a user when a user is created, and save it to the db.
If you don't await for the publisher to finish executing all the events your function will return right after user is saved to the database, without waiting for a wallet creation.
It is reactive sure, but what if after saving a user your api/database crashes? Your wallet will never be created. Reactive events are good when you have a mechanism to retry sending an event in case of a failure (for example if you use message brokers like RabbitMQ), but NestJS CQRS event bus is in-memory, so in case of a crash/restart it will just lose all the events. Some events will be executed, some not. This means you will have inconsistent data everywhere.
On the other hand, when a publisher lets you await for all domain events to finish (which NestJS CQRS doesn't) you can include all those events in a single transaction and if one event fails none of the data gets persisted. Its all or nothing.
I hope this answers your question

from domain-driven-hexagon.

johannesschobel avatar johannesschobel commented on May 21, 2024 1

wouldn't it be good to add this kind of feature to the official NestJS CQRS package? What do you think @Sairyss

from domain-driven-hexagon.

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.