Hacker News new | ask | show | jobs
by ww520 2588 days ago
- The consumer needs to validate the incoming requests. Just like any input sources, the incoming data cannot be trusted until validated.

- You need coupling somewhere anyway. Moving the coupling to the bus let the consumer and producer evolve more freely.

1 comments

> - The consumer needs to validate the incoming requests. Just like any input sources, the incoming data cannot be trusted until validated.

That's correct. And the producer will be long gone by the time the consumer attempts to validate that message and rejects it.