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 フレームワークを使い始めたばかりなので、ご容赦ください。