TestKitBaseActorOfAsTestActorRef Method |
Name | Description | |
---|---|---|
ActorOfAsTestActorRefTActor(String) |
Create a new actor as child of Sys and returns it as TestActorRefTActor
to enable access to the underlying actor instance via UnderlyingActor.
| |
ActorOfAsTestActorRefTActor(ExpressionFuncTActor, String) |
Create a new actor as child of Sys and returns it as TestActorRefTActor
to enable access to the underlying actor instance via UnderlyingActor.
Uses an expression that calls the constructor of TActor.
Examples ActorOf<MyActor>(()=>new MyActor("value", 4711), "test-actor") | |
ActorOfAsTestActorRefTActor(IActorRef, String) |
Create a new actor as child of the specified supervisor and returns it as TestActorRefTActor
to enable access to the underlying actor instance via UnderlyingActor.
| |
ActorOfAsTestActorRefTActor(Props, String) |
Create a new actor as child of Sys and returns it as TestActorRefTActor
to enable access to the underlying actor instance via UnderlyingActor.
| |
ActorOfAsTestActorRefTActor(ExpressionFuncTActor, IActorRef, String) |
Create a new actor as child of the specified supervisor and returns it as TestActorRefTActor
to enable access to the underlying actor instance via UnderlyingActor.
Uses an expression that calls the constructor of TActor.
Examples ActorOf<MyActor>(()=>new MyActor("value", 4711), "test-actor") | |
ActorOfAsTestActorRefTActor(Props, IActorRef, String) |
Create a new actor as child of specified supervisor and returns it as TestActorRefTActor
to enable access to the underlying actor instance via UnderlyingActor.
|