Package akka.stream.snapshot
Class MaterializerState
- java.lang.Object
-
- akka.stream.snapshot.MaterializerState
-
public class MaterializerState extends java.lang.Object
Debug utility to dump the running streams of a materializers in a structure describing the graph layout and "waits-on" relationships.Some of the data extracted may be off unless the stream has settled, for example in when deadlocked, but the structure should be valid regardless. Extracting the information often will have an impact on the performance of the running streams.
-
-
Constructor Summary
Constructors Constructor Description MaterializerState()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static scala.concurrent.Future<scala.collection.immutable.Seq<StreamSnapshot>>
streamSnapshots(ActorSystem system)
Dump stream snapshots of all streams of the default system materializer.static scala.concurrent.Future<scala.collection.immutable.Seq<StreamSnapshot>>
streamSnapshots(Materializer mat)
Dump stream snapshots of all streams of the given materializer.
-
-
-
Method Detail
-
streamSnapshots
public static scala.concurrent.Future<scala.collection.immutable.Seq<StreamSnapshot>> streamSnapshots(ActorSystem system)
Dump stream snapshots of all streams of the default system materializer.
-
streamSnapshots
public static scala.concurrent.Future<scala.collection.immutable.Seq<StreamSnapshot>> streamSnapshots(Materializer mat)
Dump stream snapshots of all streams of the given materializer.
-
-