Fault Tolerance (Scala) — Akka Documentation

Fault Tolerance (Scala) — Akka Documentation

Fault Handling in Practice

First, let us look at a sample that illustrates one way to handle data store errors, which is a typical source of failure in real world applications. Of course it depends on the actual application what is possible to do when the data store is unavailable, but in this sample we use a best effort re-connect approach.

Read the following source code. The inlined comments explain the different pieces of the fault handling and why they are added. It is also highly recommended to run this sample as it is easy to follow the log output to understand what is happening in runtime.

原文地址:https://www.cnblogs.com/lexus/p/2422592.html