Click or drag to resize
Akka.NETIActorRefProviderActorOf Method
Actor factory with create-only semantics: will create an actor as described by props with the given supervisor and path (may be different in case of remote supervision). If systemService is true, deployment is bypassed (local-only). If a value fordeploy is passed in, it should be regarded as taking precedence over the nominally applicable settings, but it should be overridable from external configuration; the lookup of the latter can be suppressed by setting "lookupDeploy" to "false".

Namespace:  Akka.Actor
Assembly:  Akka (in Akka.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax
IInternalActorRef ActorOf(
	ActorSystemImpl system,
	Props props,
	IInternalActorRef supervisor,
	ActorPath path,
	bool systemService,
	Deploy deploy,
	bool lookupDeploy,
	bool async
)

Parameters

system
Type: Akka.Actor.InternalActorSystemImpl
TBD
props
Type: Akka.ActorProps
TBD
supervisor
Type: Akka.ActorIInternalActorRef
TBD
path
Type: Akka.ActorActorPath
TBD
systemService
Type: SystemBoolean
TBD
deploy
Type: Akka.ActorDeploy
TBD
lookupDeploy
Type: SystemBoolean
TBD
async
Type: SystemBoolean
TBD

Return Value

Type: IInternalActorRef
TBD
See Also