Chapter 4. State, behavior, and actors
This chapter covers
In chapter 3, we looked at creating actors and sending messages to them. You saw how, using ReceiveActor, you can register methods that an actor will execute when it receives a message. In this chapter, you’ll learn how to change which methods are executed in response to the messages received at runtime. This will allow you to build complex actors that are responsive and reactive to their environment, in accordance with the Reactive Manifesto.
This chapter also covers how you can generalize actors in various states into a finite state machine (FSM). You’ll learn how you can create FSMs diagrammatically and how you can convert these diagrams into different actor types, including a new actor type—the FSMActor.
By the end of this chapter, you’ll have learned how to create actors that fully react to changes in their environment.
You’ll remember that the aim of a reactive application is to react quickly to changes in the environment. These changes could require an actor to respond to either expected or unexpected events, with a different behavior executed in response to each type of event.