Interface IRemindable
Callback interface that grains must implement inorder to be able to register and receive Reminders.
Namespace: Orleans
Assembly: Orleans.Core.Abstractions.dll
Syntax
public interface IRemindable : IGrain, IAddressable
Methods
| Improve this Doc View SourceReceiveReminder(String, TickStatus)
Receive a new Reminder.
Declaration
Task ReceiveReminder(string reminderName, TickStatus status)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | reminderName | Name of this Reminder |
| TickStatus | status | Status of this Reminder tick |
Returns
| Type | Description |
|---|---|
| Task | Completion promise which the grain will resolve when it has finished processing this Reminder tick. |