...

/

Overview: Domain Model and Asynchronous Events

Overview: Domain Model and Asynchronous Events

Take a look at what you’ll learn in this chapter.

When we’re deciding on a communication pattern for an application, it’s normal to look at the circumstances under which components will communicate with one another. Typical web applications follow a request/response pattern, where a request is made to the server, and a response is returned to the client and handled appropriately. For applications looking to handle high throughput in those communication channels, a standard request/response pattern is not desired because each request would expect and wait for ...