我在我的项目中使用 Akka FSM 并添加持久性。直接的解决方案是使用 Persistent FSM ( https://doc.akka.io/docs/akka/current/persistence-fsm.html )
但是在官方文档中存在警告Warning
Persistent FSM is no longer actively developed and will be replaced by Akka Typed Persistence. It is not advised to build new applications with Persistent FSM.
但是没有示例如何为 FSM 参与者使用类型化持久性。我所看到的只是如何为 Typed Actors 使用类型化持久性。
有没有机会将 Typed Persistence 与 FSM 演员一起使用?