Click or drag to resize
Akka.NETIUntypedActorContext Properties

The IUntypedActorContext type exposes the following members.

Properties
  NameDescription
Public propertyDispatcher
The dispatcher this actor is running on
(Inherited from IActorContext.)
Public propertyParent
Gets the IActorRef of the parent of the current actor.
(Inherited from IActorContext.)
Public propertyProps
The Props used to originally create this IActorRef
(Inherited from IActorContext.)
Public propertyReceiveTimeout (Inherited from IActorContext.)
Public propertySelf
Gets the IActorRef belonging to the current actor.
(Inherited from IActorContext.)
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.
(Inherited from IActorContext.)
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.
(Inherited from IActorContext.)
Top
See Also