Service Fabric Actors, ReceiveReminderAsync and CancellationTokens

476 Views Asked by At

I have an Azure Service Fabric actor that uses reminders.

  • What happens if I delete my service or upgrade it while the actor is in the middle of the ReceiveReminderAsync method?
  • Can I send a cancellation token to the ReceiveReminderAsync method?
1

There are 1 best solutions below

1
On BEST ANSWER

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.