Class ActorAssociationEventListener
Converts an IActorRef into an IAssociationEventListener, so IAssociationEvent messages can be passed directly to the Actor.
Implements
Inherited Members
Namespace: Akka.Remote.Transport
Assembly: Akka.Remote.dll
Syntax
public sealed class ActorAssociationEventListener : IAssociationEventListener
Constructors
| Edit this page View SourceActorAssociationEventListener(IActorRef)
Initializes a new instance of the ActorAssociationEventListener class.
Declaration
public ActorAssociationEventListener(IActorRef actor)
Parameters
| Type | Name | Description |
|---|---|---|
| IActorRef | actor | The Actor to notify about IAssociationEvent messages. |
Properties
| Edit this page View SourceActor
The Actor to notify about IAssociationEvent messages.
Declaration
public IActorRef Actor { get; }
Property Value
| Type | Description |
|---|---|
| IActorRef |
Methods
| Edit this page View SourceNotify(IAssociationEvent)
Notify the Actor about an IAssociationEvent.
Declaration
public void Notify(IAssociationEvent ev)
Parameters
| Type | Name | Description |
|---|---|---|
| IAssociationEvent | ev | The IAssociationEvent message to notify the Actor about |
Edit this page