IReminderRegistry.GetReminders Method
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.
Overloads
GetReminders() | |
GetReminders(GrainId) |
Gets all reminders which are currently registered to the active grain. |
GetReminders()
- Source:
- IReminderRegistry.cs
public System.Threading.Tasks.Task<System.Collections.Generic.List<Orleans.Runtime.IGrainReminder>> GetReminders ();
abstract member GetReminders : unit -> System.Threading.Tasks.Task<System.Collections.Generic.List<Orleans.Runtime.IGrainReminder>>
Public Function GetReminders () As Task(Of List(Of IGrainReminder))
Returns
Applies to
GetReminders(GrainId)
Gets all reminders which are currently registered to the active grain.
public System.Threading.Tasks.Task<System.Collections.Generic.List<Orleans.Runtime.IGrainReminder>> GetReminders (Orleans.Runtime.GrainId callingGrainId);
abstract member GetReminders : Orleans.Runtime.GrainId -> System.Threading.Tasks.Task<System.Collections.Generic.List<Orleans.Runtime.IGrainReminder>>
Public Function GetReminders (callingGrainId As GrainId) As Task(Of List(Of IGrainReminder))
Parameters
- callingGrainId
- GrainId
The ID of the the currently executing grain
Returns
All reminders which are currently registered to the active grain.