Let's see how the streaming implementation changes the shape of our bakery app we've built Chapter 11, An Introduction to the Akka and Actor Models, and Chapter 12, Building Reactive Applications with Akka Typed. To recap, this is the design of the bakery represented with actors:
Actors in this hierarchy had the following responsibilities:
- The Manager initiated new baking rounds and performed the transfer of work packages between subordinates and supervised them.
- The Boy was given a shopping list and acquired groceries from the remote system.
- The Chef created and used a number of mixers of limited capacity in order ...