ActorSystem Class

An actor system is a hierarchical group of actors which share common configuration, e.g. dispatchers, deployments, remote capabilities and addresses. It is also the entry point for creating or looking up actors. There are several possibilities for creating actors (see [[Akka.Actor.Props]] for details on `props`):
C#
system.ActorOf(props, "name");
system.ActorOf(props);
system.ActorOf(Props.Create(typeof(MyActor)), "name");
system.ActorOf(Props.Create(() => new MyActor(arg1, arg2), "name");
Where no name is given explicitly, one will be automatically generated. Important Notice: This class is not meant to be extended by user code.

Namespace:  Akka.Actor
Assembly:  Akka (in Akka.dll)

Syntax


public class ActorSystem : IActorRefFactory, 
	IDisposable
Public Class ActorSystem _
	Implements IActorRefFactory, IDisposable
public ref class ActorSystem : IActorRefFactory, 
	IDisposable

Inheritance Hierarchy


Object
  Akka.Actor..::..ActorSystem