C# Class Akka.Remote.Transport.ActorHandleEventListener

Converts an ActorRef instance into an IHandleEventListener, so IHandleEvent messages can be passed directly to the Actor.
Inheritance: IHandleEventListener
Afficher le fichier Open project: rogeralsing/akka.net

Méthodes publiques

Свойство Type Description
Actor IActorRef

Méthodes publiques

Méthode Description
ActorHandleEventListener ( IActorRef actor ) : System

Initializes a new instance of the ActorHandleEventListener class.

Notify ( IHandleEvent ev ) : void

Notify the Actor about an IHandleEvent message.

Method Details

ActorHandleEventListener() public méthode

Initializes a new instance of the ActorHandleEventListener class.
public ActorHandleEventListener ( IActorRef actor ) : System
actor IActorRef The Actor to notify about messages.
Résultat System

Notify() public méthode

Notify the Actor about an IHandleEvent message.
public Notify ( IHandleEvent ev ) : void
ev IHandleEvent The message to notify the Actor about
Résultat void

Property Details

Actor public_oe property

The Actor to notify about IHandleEvent messages.
public IActorRef Actor
Résultat IActorRef