akka entry series - 5. Routing messages

5. Routing messages In the previous example, we created and used a single actor, and an actor can only process one message at the same time, which does not give play to the advantages of akka parallel computing. We hope to process messages in parallel, just like kafka's consumer. This requires the use of routing to akka. Routing is the same a ...

Posted by dmb on Mon, 27 Sep 2021 22:14:44 -0700