C# Class Akka.Remote.Transport.ActorAssociationEventListener

Converts an ActorRef instance into an IAssociationEventListener, so IAssociationEvent messages can be passed directly to the Actor.
Inheritance: IAssociationEventListener
Datei anzeigen Open project: rogeralsing/akka.net

Public Methods

Method Description
ActorAssociationEventListener ( IActorRef actor ) : System

Initializes a new instance of the ActorAssociationEventListener class.

Notify ( IAssociationEvent ev ) : void

Notify the Actor about an IAssociationEvent.

Method Details

ActorAssociationEventListener() public method

Initializes a new instance of the ActorAssociationEventListener class.
public ActorAssociationEventListener ( IActorRef actor ) : System
actor IActorRef The Actor to notify about messages.
return System

Notify() public method

Notify the Actor about an IAssociationEvent.
public Notify ( IAssociationEvent ev ) : void
ev IAssociationEvent The message to notify the Actor about
return void