我想做一些Akka多節點測試,並在達到某些障礙時重新啓動一個節點。喜歡的東西: runOn(nodeA) {
// do something while both nodes are up and running
enterBarrier("nodeBCrashes")
// do something while I'm the only node up and
以下是的,我已經定義了演員(試圖讓我的持久化的演員頭上!) public class Country : ReceivePersistentActor
{
public override string PersistenceId => GetType().Name + state.Id;
private CountryState state;
public Co