- Mastering Akka
- Christian Baxter
- 240字
- 2021-07-08 11:06:05
Chapter 2. Simplifying Concurrent Programming with Actors
Before we get started on our refactoring journey (which I promise will start in earnest in Chapter 3, Curing Anemic Models with Domain-Driven Design), it makes sense to refresh ourselves on the actor model and Akka's implementation of it. We will tear down the walls and reframe our house with new programming techniques, but Akka's actors will always be the foundation to that house. Even though some of the newer aspects of Akka (such as Streams and HTTP) abstract up one level from directly using actors, the actor is still a core building block of those frameworks. As such, we should have a solid understanding of what an actor is and how they fit into the world of concurrent programming. We'll even do a little bit of refactoring work in this chapter as we have some bad actor debt (the SalesOrderManager
) to clean up first. Here are the things you can expect to learn in this chapter:
- The origins of the actor model and how Akka originated from it
- What concurrency and parallelism are, and how you can use Akka actors to achieve them
- The different types of Dispatchers and Mailboxes in Akka and what use cases each one is good for
- How to employ Akka's FSM feature to simplify the coding of complex workflows
- The different types of automated testing within the testing pyramid
- How to test your Akka actors
- Learning LibGDX Game Development(Second Edition)
- Web前端開發技術:HTML、CSS、JavaScript(第3版)
- Java范例大全
- Mastering Entity Framework
- 樂學Web編程:網站制作不神秘
- Neo4j Essentials
- AutoCAD VBA參數化繪圖程序開發與實戰編碼
- 網站構建技術
- RESTful Java Web Services(Second Edition)
- Django 3.0應用開發詳解
- 機器學習微積分一本通(Python版)
- Android應用開發實戰(第2版)
- Learning Unreal Engine Game Development
- Python預測之美:數據分析與算法實戰(雙色)
- Unity 3D UI Essentials