Interface IInternalActor
Contains things needed by the framework
Namespace: Akka.Actor
Assembly: Akka.dll
Syntax
public interface IInternalActor
Properties
| Edit this page View SourceActorContext
Gets the context for this instance.
Declaration
IActorContext ActorContext { get; }
Property Value
| Type | Description |
|---|---|
| IActorContext | The context. |
Exceptions
| Type | Condition |
|---|---|
| NotSupportedException | This exception is thrown if there is no active Context. The most likely cause is due to use of async operations from within this actor. |
Edit this page