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
Datei anzeigen Open project: rogeralsing/akka.net

Public Properties

Property Type Description
Actor IActorRef

Public Methods

Method 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 method

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

Notify() public method

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

Property Details

Actor public_oe property

The Actor to notify about IHandleEvent messages.
public IActorRef Actor
return IActorRef