- Hands-On Reactive Programming with Python
- Romain Picard
- 247字
- 2021-06-24 18:25:18
Summary
This chapter covered all the base concepts of asynchronous programming and how they work in Python. You should now understand what it means to yield or await a coroutine and know the differences between blocking and non-blocking designs. Hopefully, the short history of asynchronous programming in Python and the examples of asynchronous programming with callback also helped you understand why Python is one of the few languages with best-in-class support of asynchronous programming.
Moreover, you should also be familiar enough with the AsyncIO APIs to write your own asynchronous applications. This chapter only covered the basic usage of AsyncIO, but the features presented here are the most-used ones. Other more advanced features will be introduced in this book, as they are needed in other examples.
One last word on this chapter: Do not be fooled by the simplicity of the echo server implementation. As simple as it is, it is nevertheless a solid foundation to implement real microservices in Python in a fully asynchronous way. A bigger project would require more code, but it would be based on the same APIs that are already used in this small project: the creation of an application, the routing of requests, eventually with variable resources, and the implementation of handlers.
The next chapter continues this introduction of asynchronous and reactive programming with a way to structure your code. More specifically, it will show you how functional programming is well adapted for the implementation of asynchronous code with ReactiveX.
- 30天自制操作系統
- Implementing Cisco UCS Solutions
- 精解Windows 8
- SharePoint 2013 WCM Advanced Cookbook
- Ubuntu Linux操作系統
- 高性能Linux服務器構建實戰:系統安全、故障排查、自動化運維與集群架構
- 8051軟核處理器設計實戰
- Linux內核設計的藝術:圖解Linux操作系統架構設計與實現原理
- Advanced TypeScript Programming Projects
- Agile IT Security Implementation Methodology
- Getting Started with UDK
- Mastering Eclipse Plug-in Development
- 鴻蒙HarmonyOS應用開發從入門到精通
- Microsoft DirectAccess Best Practices and Troubleshooting
- 分布式實時處理系統:原理、架構與實現