| CoordinatedShutdownRun Method |
Run tasks of all phases including and after the given phase.
Namespace:
Akka.Actor
Assembly:
Akka (in Akka.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public Task<Done> Run(
string fromPhase = null
)
member Run :
?fromPhase : string
(* Defaults:
let _fromPhase = defaultArg fromPhase null
*)
-> Task<Done>
Parameters
- fromPhase (Optional)
- Type: SystemString
Optional. The phase to start the run from.
Return Value
Type:
TaskDoneA task that is completed when all such tasks have been completed, or
there is failure when
Recover is disabled.
Remarks
It is safe to call this method multiple times. It will only run once.
See Also