ExtendedActorSystemSystemActorOf Method (Props, String) |
Creates a new system actor in the "/system" namespace. This actor
will be shut down during system shutdown only after all user actors have
terminated.
Namespace: Akka.ActorAssembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntaxpublic abstract ActorRef SystemActorOf(
Props props,
string name = null
)
Public MustOverride Function SystemActorOf (
props As Props,
Optional name As String = Nothing
) As ActorRef
public:
virtual ActorRef^ SystemActorOf(
Props^ props,
String^ name = nullptr
) abstract
abstract SystemActorOf :
props : Props *
?name : string
(* Defaults:
let _name = defaultArg name null
*)
-> ActorRef
Parameters
- props
- Type: Akka.ActorProps
[Missing <param name="props"/> documentation for "M:Akka.Actor.ExtendedActorSystem.SystemActorOf(Akka.Actor.Props,System.String)"]
- name (Optional)
- Type: SystemString
[Missing <param name="name"/> documentation for "M:Akka.Actor.ExtendedActorSystem.SystemActorOf(Akka.Actor.Props,System.String)"]
Return Value
Type:
ActorRef[Missing <returns> documentation for "M:Akka.Actor.ExtendedActorSystem.SystemActorOf(Akka.Actor.Props,System.String)"]
See Also