IReminderTable
interface
Namespace: Orleans
Interface for implementations of the underlying storage for reminder data: Azure Table, SQL, development emulator grain, and a mock implementation. Defined as a grain interface for the development emulator grain case.
public interface IReminderTableMethods
InitInitializes this instance.ReadRow(GrainId, string)Reads the specified entry.ReadRows(GrainId)Reads the reminder table entries associated with the specified grain.ReadRows(uint, uint)Returns all rows that have theirGrainIdin the range (begin, end]. If begin is greater or equal to end, returns all entries with hash greater begin or hash less or equal to end.RemoveRow(GrainId, string, string)Removes a row from the table.StartAsync(CancellationToken)Initializes this instance.StopAsync(CancellationToken)Stops the reminder table.TestOnlyClearTableClears the table.UpsertRow(ReminderEntry)Upserts the specified entry.
