| TestKitBaseActorOf Method |
| Name | Description | |
|---|---|---|
| ActorOfTActor |
Create a new actor as child of Sys.
| |
| ActorOfTActor(ExpressionFuncTActor) | ||
| ActorOfTActor(String) |
Create a new actor as child of Sys.
| |
| ActorOf(Props) |
Create a new actor as child of Sys.
| |
| ActorOfTActor(ExpressionFuncTActor, String) | ||
| ActorOf(ActionIActorDsl, String) |
Creates a new actor by defining the behavior inside the configure action.
ActorOf(c =>
{
c.Receive<string>((msg, ctx) => ctx.Sender.Tell("Hello " + msg));
}); | |
| ActorOf(ActionIActorDsl, IActorContext, String) |
Creates a new actor by defining the behavior inside the configure action.
ActorOf(c =>
{
c.Receive<string>((msg, ctx) => ctx.Sender.Tell("Hello " + msg));
}); | |
| ActorOf(Props, String) |
Create a new actor as child of Sys.
|