在无类型的akka persistence
中,我们可以轻松地为具有
PersistentFSMBase.when(stateName: S, stateTimeout: FiniteDuration)
根据https://doc.akka.io/docs/akka/current/typed/fsm.html,在akka typed
的新FSM
中,我们可以将超时设置为
Behaviors.withTimers { ... }
但是,如果我们只有akka typed persistence
和commandHandler
而又不能更改eventHandler
,我们如何才能为Behavior
中的状态引入超时?