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

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

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 '-'

Return Value

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