Akka 2 是否提供了一种方法来确定系统中特定时间活动的特定类型的参与者数量?
我一直在寻找类似的东西
int actorCount = getContext().count(MyActor.class)
或者
Props props = Props.create(MyActor.class, "actorName")
...
int actorCount = getContext().count(props)
或者
getContext().actorSelection("/path/to/actor").count()
我刚刚开始使用 Java 中的 akka 框架,所以请多多包涵。