- Hands-On Microservices with Kotlin
- Juan Antonio Medina Iglesias
- 149字
- 2021-06-30 19:10:45
Message-driven
Reactive systems use asynchronous messaging to flow information through the different components with very loosely coupling, that allows us to interconnect those systems in isolation. We could think of this as if we are connecting streams through pipes, one service could subscribe to another to get some information and the second service could be subscribed to a couple of additional services to combine the data and return it back to the original service.

Each of those services does not know why or how that information is used, so they have little information about the dependencies. This allows us to replace those pieces easily, but as well as handling errors in case of failure, we could simply just create a stream of errors with other receivers that will handle and process them.
But the manifesto speaks about applying back pressure; we need to understand that concept further.
- Dynamics 365 for Finance and Operations Development Cookbook(Fourth Edition)
- Python程序設計教程(第2版)
- Mastering Entity Framework Core 2.0
- Building Modern Web Applications Using Angular
- Java高手真經(高級編程卷):Java Web高級開發技術
- Learning Flask Framework
- VMware vSphere 6.7虛擬化架構實戰指南
- Java加密與解密的藝術
- RISC-V體系結構編程與實踐(第2版)
- C++寶典
- 打開Go語言之門:入門、實戰與進階
- Python期貨量化交易實戰
- 零基礎學C語言(第4版)
- MongoDB Cookbook(Second Edition)
- Visual C++程序設計與項目實踐