Package akka.stream
Class KillSwitches
- java.lang.Object
-
- akka.stream.KillSwitches
-
public class KillSwitches extends java.lang.Object
Creates shared or single kill switches which can be used to control completion of graphs from the outside. - The factoryshared()
returns a
SharedKillSwitch
which provides aGraph
ofFlowShape
that can be used in arbitrary number of graphs and materializations. The switch simultaneously controls completion in all of those graphs. - The factorysingle()
returns a
Graph
ofFlowShape
that materializes to aUniqueKillSwitch
which is always unique to that materialized Flow itself.Creates a
SharedKillSwitch
that can be used to externally control the completion of various streams.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
KillSwitches.KillableGraphStageLogic
static class
KillSwitches.UniqueBidiKillSwitchStage$
static class
KillSwitches.UniqueKillSwitchStage$
-
Constructor Summary
Constructors Constructor Description KillSwitches()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SharedKillSwitch
shared(java.lang.String name)
Creates a newSharedKillSwitch
with the given name that can be used to control the completion of multiple streams from the outside simultaneously.static <T> Graph<FlowShape<T,T>,UniqueKillSwitch>
single()
static <T1,T2>
Graph<BidiShape<T1,T1,T2,T2>,UniqueKillSwitch>singleBidi()
-
-
-
Method Detail
-
shared
public static SharedKillSwitch shared(java.lang.String name)
Creates a newSharedKillSwitch
with the given name that can be used to control the completion of multiple streams from the outside simultaneously.- See Also:
SharedKillSwitch
-
single
public static <T> Graph<FlowShape<T,T>,UniqueKillSwitch> single()
-
singleBidi
public static <T1,T2> Graph<BidiShape<T1,T1,T2,T2>,UniqueKillSwitch> singleBidi()
-
-