- 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
- Java范例大全
- Microsoft Application Virtualization Cookbook
- Learning Laravel 4 Application Development
- Java設計模式及實踐
- 網絡爬蟲原理與實踐:基于C#語言
- Windows Forensics Cookbook
- Functional Kotlin
- SQL Server 2016數據庫應用與開發習題解答與上機指導
- JavaCAPS基礎、應用與案例
- Access 2010中文版項目教程
- C語言程序設計習題與實驗指導
- Python函數式編程(第2版)
- Python全棧開發:基礎入門
- Learning C++ by Creating Games with UE4
- Socket.IO Cookbook