GrainReminderExtensions.GetReminders Method
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.
GetReminders(Grain) |
Returns a list of all reminders registered by the grain. |
GetReminders(IGrainBase) |
Returns a list of all reminders registered by the grain. |
Returns a list of all reminders registered by the grain.
public static System.Threading.Tasks.Task<System.Collections.Generic.List<Orleans.Runtime.IGrainReminder>> GetReminders(this Orleans.Grain grain);
static member GetReminders : Orleans.Grain -> System.Threading.Tasks.Task<System.Collections.Generic.List<Orleans.Runtime.IGrainReminder>>
<Extension()>
Public Function GetReminders (grain As Grain) As Task(Of List(Of IGrainReminder))
Parameters
- grain
- Grain
Returns
Promise for list of Reminders registered for this grain.
Applies to
.NET Orleans 9.0.0 and other versions
Product | Versions |
---|---|
.NET Orleans | 7.0.0, 8.0.0, 8.1.0, 8.2.0, 9.0.0 |
Returns a list of all reminders registered by the grain.
public static System.Threading.Tasks.Task<System.Collections.Generic.List<Orleans.Runtime.IGrainReminder>> GetReminders(this Orleans.IGrainBase grain);
static member GetReminders : Orleans.IGrainBase -> System.Threading.Tasks.Task<System.Collections.Generic.List<Orleans.Runtime.IGrainReminder>>
<Extension()>
Public Function GetReminders (grain As IGrainBase) As Task(Of List(Of IGrainReminder))
Parameters
- grain
- IGrainBase
Returns
Promise for list of Reminders registered for this grain.
Applies to
.NET Orleans 9.0.0 and other versions
Product | Versions |
---|---|
.NET Orleans | 7.0.0, 8.0.0, 8.1.0, 8.2.0, 9.0.0 |