DEV Community

Discussion on: Event-driven integration #4 - Outbox publisher (feat. IHostedService & Channels) [ASPF02O|E043]

Collapse
 
joaofbantunes profile image
João Antunes

Hey! Thanks!

Sorry for responding just now, didn't notice there was a comment 😐.

The OutboxPublisherFallbackBackgroundService ensures the OutboxFallbackPublisher runs from time to time.

As for ordering, yes, this wasn't something taken into consideration at this point, it would require some extra effort.

If we can avoid requiring message ordering, it's the best, not only because it makes things simpler, but in consequence of that, also more performant. Adding order into the mix will require much more work not only on the publishing side, but also the consumer side.