Reputation: 12416
For debug purposes I'd like to have a programmatic way to get tree of non-terminated actors that are currently in the system.
Anything that can give\can be converted to textual represenatation of the current state of actor hierarchy will also be sufficient.
How can I implement this?
Upvotes: 0
Views: 99
Reputation: 26
You can traverse the actor hierarchy recursively but since the number of actors in a given system are usually elastic, the answer may not be reliable.
Upvotes: 0