Click or drag to resize
Akka.NETCoordinatedShutdownRun Method
Run tasks of all phases including and after the given phase.

Namespace:  Akka.Actor
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public Task<Done> Run(
	string fromPhase = null
)

Parameters

fromPhase (Optional)
Type: SystemString
Optional. The phase to start the run from.

Return Value

Type: TaskDone
A 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