I have an Azure Service Fabric actor that uses reminders.
ReceiveReminderAsync
method?ReceiveReminderAsync
method?Actors follow the single entry pattern by default. While a reminder callback is being processed, no other operations (like Deactivate) can occur. Deletions (unless forced) and upgrades are delayed until the operation completes.
The receive reminder uses the IRemindable interface. It has no cancellation support.