How to create two different type actors in a single Akka Cluster.
ActorRef ShardRegion=ClusterSharding.get(ClusterSys).start("Test", Props.create(ShardActor.class), settings,new ShardMessageExtrater());
Here when we start e ShardRegion we define the class it take to create entity actor.
Can we use two type of actor class to create entity Actors?
Any other way?