| TestActorRefTActor Constructor |
Namespace:
Akka.TestKit
Assembly:
Akka.TestKit (in Akka.TestKit.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public TestActorRef(
ActorSystem system,
Props actorProps,
IActorRef supervisor = null,
string name = null
)
new :
system : ActorSystem *
actorProps : Props *
?supervisor : IActorRef *
?name : string
(* Defaults:
let _supervisor = defaultArg supervisor null
let _name = defaultArg name null
*)
-> TestActorRef
Parameters
- system
- Type: Akka.ActorActorSystem
The system. - actorProps
- Type: Akka.ActorProps
The actor props. - supervisor (Optional)
- Type: Akka.ActorIActorRef
Optional: The supervisor. - name (Optional)
- Type: SystemString
Optional: The name.
See Also