using Akka.Configuration;
public static void Main()
var akkaConfig = Akka.Configuration.ConfigurationFactory.Default();
using (ActorSystem system = ActorSystem.Create("TestSystem", akkaConfig))
var childProps = Props.Create<ChildActor>();
var supervisor = BackoffSupervisor.Props(
minBackoff: TimeSpan.FromSeconds(3),
maxBackoff: TimeSpan.FromSeconds(30),
maxNrOfRetries: 2)).WithSupervisorStrategy(
withinTimeRange: TimeSpan.FromSeconds(30),
Console.WriteLine($"{DateTime.Now} - Deciding strategy");
if (ex is UnauthorizedAccessException)
else if (ex is InvalidOperationException)
return Directive.Restart;
return OneForOneStrategy.DefaultDecider.Decide(ex);
var actor = system.ActorOf(supervisor, "childSupervisor");
actor.Tell(new DoSomethingBad());
class ChildActor : ReceiveActor
protected override void PreRestart(Exception reason, object message)
Console.WriteLine($"{DateTime.Now} - Restarting");
this.Receive<DoSomethingBad>(m => {
Console.WriteLine($"{DateTime.Now} - Trying to do something really dangerous");
throw new InvalidOperationException();