Share via


VolatileActorStateProvider.IActorStateProvider.DeleteRemindersAsync Method

Definition

Deletes the specified set of reminders.

System.Threading.Tasks.Task IActorStateProvider.DeleteRemindersAsync (System.Collections.Generic.IReadOnlyDictionary<Microsoft.ServiceFabric.Actors.ActorId,System.Collections.Generic.IReadOnlyCollection<string>> reminderNames, System.Threading.CancellationToken cancellationToken);
abstract member Microsoft.ServiceFabric.Actors.Runtime.IActorStateProvider.DeleteRemindersAsync : System.Collections.Generic.IReadOnlyDictionary<Microsoft.ServiceFabric.Actors.ActorId, System.Collections.Generic.IReadOnlyCollection<string>> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.Microsoft.ServiceFabric.Actors.Runtime.IActorStateProvider.DeleteRemindersAsync : System.Collections.Generic.IReadOnlyDictionary<Microsoft.ServiceFabric.Actors.ActorId, System.Collections.Generic.IReadOnlyCollection<string>> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Function DeleteRemindersAsync (reminderNames As IReadOnlyDictionary(Of ActorId, IReadOnlyCollection(Of String)), cancellationToken As CancellationToken) As Task Implements IActorStateProvider.DeleteRemindersAsync

Parameters

reminderNames
IReadOnlyDictionary<ActorId,IReadOnlyCollection<String>>

The set of reminders to delete.

cancellationToken
CancellationToken

The token to monitor for cancellation requests.

Returns

A task that represents the asynchronous delete operation.

Implements

Exceptions

The operation was canceled.

Applies to