using Akka.Configuration;
using System.Threading.Tasks;
public string Name { get; private set; }
public Actor(string name)
public class ShowName : ReceiveActor
Receive<Actor>(actor => Console.WriteLine(actor.Name));
protected override void PostStop()
Console.WriteLine("Actor Stopped");
protected override void PreRestart(Exception reason, object message)
public static void Main()
ActorSystem system = ActorSystem.Create("MySystem", GetConfig());
var name = system.ActorOf(Props.Create<ShowName>());
Actor act = new Actor("Actor Begining");
Console.WriteLine("Actor Ended");
private static Config GetConfig()
return ConfigurationFactory.ParseString(@"
akka.actor.default-dispatcher {
type = ""Akka.Dispatch.TaskDispatcher""