Click or drag to resize
Akka.NETDirective Enumeration
Enum Directive for supervisor actions

Namespace:  Akka.Actor
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public enum Directive
Members
  Member nameValueDescription
Resume0 Resumes message processing for the failed Actor
Restart1 Discards the old Actor instance and replaces it with a new, then resumes message processing.
Escalate2 Escalates the failure to the supervisor of the supervisor, by rethrowing the cause of the failure, i.e. the supervisor fails with the same exception as the child.
Stop3 Stops the Actor
See Also