- Hands-On Reactive Programming with Python
- Romain Picard
- 291字
- 2021-06-24 18:25:11
Reactive versus proactive
So what is reactive programming?
An easy way to get the idea behind it is to use an analogy with people's behavior: someone who is proactive is somebody who takes initiatives. A proactive person will propose ideas or test things before somebody asks him to do so. On the other hand, a reactive person is somebody who waits for information before doing something. So, a proactive person acts on his own while a reactive person reacts to external changes. There are pros and cons to each behavior: a proactive person proposing solutions ahead of time is great, but may have difficulties dealing with unexpected changes. On the other hand, a reactive person may be very efficient in dealing with very dynamic environments.
Reactive programming can be considered as implementing a behavior in a similar way to a reactive person. A reactive system reacts on external events and provides a result that depends only on the event it has received. So why would reactive programming be better than sequential programming? Better is always a matter of preferences and context, so reactive programming may not be the solution most adapted to all the problems you will encounter. However, as you will see through this book, reactive programming shines at implementing event-driven code.
Reactive programming is inherently asynchronous. So it makes it easier to deal efficiently with inputs and outputs than with synchronous paradigms. Reactive programming favors composition. Each component is completely independent from another and can be plugged in with other components. This also makes testing quite easy and, as a consequence, it also helps to refactor existing code. Moreover, it is quite engaging, and with experience you will see that almost everything is a flow of events.
- Linux運維之道(第3版)
- 電腦組裝與系統安裝
- Modern Web Testing with TestCafe
- Cybersecurity:Attack and Defense Strategies
- VMware Horizon View 6 Desktop Virtualization Cookbook
- 完美應用RHEL 8
- ElasticSearch Cookbook
- VMware Horizon View Essentials
- 統信UOS應用開發進階教程
- 大學計算機應用基礎實踐教程(Windows 7+MS Office 2010)
- 電腦辦公(Windows 10 + Office 2016)入門與提高(超值版)
- Linux內核分析及應用
- 基于Arduino的嵌入式系統入門與實踐
- Implementing Cloud Design Patterns for AWS(Second Edition)
- Mastering Spring Cloud