| GraphStageLogicSetKeepGoing Method |
Controls whether this stage shall shut down when all its ports are closed, which
is the default. In order to have it keep going past that point this method needs
to be called with a true argument before all ports are closed, and afterwards
it will not be closed until this method is called with a false argument or the
stage is terminated via
CompleteStage or
FailStage(Exception).
Namespace:
Akka.Streams.Stage
Assembly:
Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax protected void SetKeepGoing(
bool enabled
)
member SetKeepGoing :
enabled : bool -> unit
Parameters
- enabled
- Type: SystemBoolean
TBD
See Also