Click or drag to resize
Akka.NETActorSystemImpl Constructor (String, Config)
Initializes a new instance of the ActorSystemImpl class.

Namespace:  Akka.Actor.Internal
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public ActorSystemImpl(
	string name,
	Config config
)

Parameters

name
Type: SystemString
The name given to the actor system.
config
Type: Akka.ConfigurationConfig
The configuration used to configure the actor system.
Exceptions
ExceptionCondition
ArgumentException This exception is thrown if the given name is an invalid name for an actor system. Note that the name must contain only word characters (i.e. [a-zA-Z0-9] plus non-leading '-').
ArgumentNullExceptionThis exception is thrown if the given config is undefined.
See Also