Click or drag to resize
Akka.NETActorSystemCreate Method (String, Config)
Creates a new ActorSystem with the specified name and configuration.

Namespace:  Akka.Actor
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public static ActorSystem Create(
	string name,
	Config config
)

Parameters

name
Type: SystemString
The name of the actor system to create. The name must be uri friendly.
Remarks
Must contain only word characters (i.e. [a-zA-Z0-9] plus non-leading '-'
config
Type: Akka.ConfigurationConfig
The configuration used to create the actor system

Return Value

Type: ActorSystem
A newly created actor system with the given name and configuration.
See Also