Class ForwardActor
ForwardActor forwards all messages as-is to specified ActorRef.
Inherited Members
Namespace: Akka.TestKit.TestActors
Assembly: Akka.TestKit.dll
Syntax
public class ForwardActor : ReceiveActor, IInternalActor, IInitializableActor
Constructors
| Edit this page View SourceForwardActor(IActorRef)
TBD
Declaration
public ForwardActor(IActorRef target)
Parameters
| Type | Name | Description |
|---|---|---|
| IActorRef | target | ActorRef to forward messages to |
Methods
| Edit this page View SourceProps(IActorRef)
Returns a Props(IActorRef) object that can be used to create an ForwardActor.
Declaration
public static Props Props(IActorRef target)
Parameters
| Type | Name | Description |
|---|---|---|
| IActorRef | target | ActorRef to forward messages to |
Returns
| Type | Description |
|---|---|
| Props | TBD |
Edit this page