ActorCallType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents the call-type associated with the method invoked by actor runtime.
public enum ActorCallType
type ActorCallType =
Public Enum ActorCallType
- Inheritance
-
System.EnumActorCallType
Fields
ActorInterfaceMethod | 0 | Specifies that the method invoked is an actor interface method for a given client request. |
ReminderMethod | 2 | Specifies that the method invoked on IRemindable interface when a reminder fires. |
TimerMethod | 1 | Specifies that the method invoked is a timer callback method. |
Remarks
This is provided as part of ActorMethodContext which is passed as argument to OnPreActorMethodAsync(ActorMethodContext) and OnPostActorMethodAsync(ActorMethodContext).