Click or drag to resize
SupervisorStrategyDefaultDecider Method
When supervisorStrategy is not specified for an actor this Decider is used by default in the supervisor strategy. The child will be stopped when ActorInitializationException, ActorKilledException, or DeathPactException is thrown. It will be restarted for other `Exception` types. The error is escalated if it's a `Exception`, i.e. `Error`.

Namespace: Akka.Actor
Assembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntax
public static Directive DefaultDecider(
	Exception exception
)

Parameters

exception
Type: SystemException
The exception.

Return Value

Type: Directive
Directive.
See Also