Package akka.stream.snapshot
Interface StreamSnapshot
-
public interface StreamSnapshot
A snapshot of one running streamNot for user extension
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description scala.collection.immutable.Seq<RunningInterpreter>
activeInterpreters()
Running interpretersscala.collection.immutable.Seq<UninitializedInterpreter>
newShells()
Interpreters that has been created but not yet initialized - the stream is not yet running
-
-
-
Method Detail
-
activeInterpreters
scala.collection.immutable.Seq<RunningInterpreter> activeInterpreters()
Running interpreters
-
newShells
scala.collection.immutable.Seq<UninitializedInterpreter> newShells()
Interpreters that has been created but not yet initialized - the stream is not yet running
-
-