Click or drag to resize
Akka.NETIActorContext Properties

The IActorContext type exposes the following members.

Properties
  NameDescription
Public propertyDispatcher
The dispatcher this actor is running on
Public propertyParent
Gets the IActorRef of the parent of the current actor.
Public propertyProps
The Props used to originally create this IActorRef
Public propertyReceiveTimeout
Public propertySelf
Gets the IActorRef belonging to the current actor.
Public propertySender
Gets the IActorRef of the actor who sent the current message. If the message was not sent by an actor (i.e. some external non-actor code sent this actor a message) then this value will default to NoSender.
Public propertySystem
Gets a reference to the ActorSystem to which this actor belongs.
Remarks
This property is how you can get access to the IScheduler and other parts of Akka.NET from within an actor instance.
Top
See Also