https://github.com/vertexclique/particlefever
Akka Actor System Tree Resolver
https://github.com/vertexclique/particlefever
actorsystem akka-actors
Last synced: 3 months ago
JSON representation
Akka Actor System Tree Resolver
- Host: GitHub
- URL: https://github.com/vertexclique/particlefever
- Owner: vertexclique
- Created: 2017-08-11T22:02:35.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-08-12T02:18:41.000Z (about 8 years ago)
- Last Synced: 2025-03-23T05:44:16.703Z (7 months ago)
- Topics: actorsystem, akka-actors
- Language: Scala
- Homepage:
- Size: 438 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Particle Fever
# [](http://github.com/vertexclique/particlefever)
**Akka Actor System Tree Resolver**Particle Fever is Akka Actor Tree resolver for debugging your ActorSystem actors and how they are organized their hierarchy.
## Installation
```scala
val particleFever = "com.vertexclique" %% "particlefever" % "0.1.0"libraryDependencies += particleFever
```## Usage
You can debug your ActorSystem with:
```scala
val tree = ParticleFever().getTree
```to get tree and if you want to print tree you can use:
```scala
ParticleFever().printTree
```