I`m using Akka FSM in my project and going to add persistence. The straightforward solution is to use Persistent FSM (https://doc.akka.io/docs/akka/current/persistence-fsm.html)
However in the official documentation exists warning 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.
But there no examples how to use typed persistence for FSM actors. All that I see is how to use typed persistence for Typed Actors.
Is there any chance to use Typed Persistence along with FSM actors?