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
| Improve this Doc 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
| Improve this Doc View SourceActor
The Actor to notify about IAssociationEvent messages.
Declaration
public IActorRef Actor { get; }
Property Value
Type | Description |
---|---|
IActorRef |
Methods
| Improve this Doc 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 |