| ActorSystemImplSystemActorOfTActor Method (String) |
Creates a new system actor that lives under the "/system" guardian.
Namespace:
Akka.Actor.Internal
Assembly:
Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax public override IActorRef SystemActorOf<TActor>(
string name = null
)
where TActor : new(), ActorBase
abstract SystemActorOf :
?name : string
(* Defaults:
let _name = defaultArg name null
*)
-> IActorRef when 'TActor : new() and ActorBase
override SystemActorOf :
?name : string
(* Defaults:
let _name = defaultArg name null
*)
-> IActorRef when 'TActor : new() and ActorBase
Parameters
- name (Optional)
- Type: SystemString
The name of the actor to create. The default value is .
Type Parameters
- TActor
-
The type of the actor to create. Must have a default constructor declared.
Return Value
Type:
IActorRefA reference to the underlying actor.
Exceptions See Also