IReminderRegistry Interface

Definition

Functionality for managing reminders.

public interface IReminderRegistry : Orleans.Services.IGrainServiceClient<Orleans.IReminderService>
type IReminderRegistry = interface
    interface IGrainServiceClient<IReminderService>
Public Interface IReminderRegistry
Implements IGrainServiceClient(Of IReminderService)
Implements

Methods

GetReminder(GrainId, String)

Gets the reminder with the specified name which is registered to the currently active grain.

GetReminder(String)
GetReminders()
GetReminders(GrainId)

Gets all reminders which are currently registered to the active grain.

RegisterOrUpdateReminder(GrainId, String, TimeSpan, TimeSpan)

Register or update the reminder with the specified name for the currently active grain.

RegisterOrUpdateReminder(String, TimeSpan, TimeSpan)
UnregisterReminder(GrainId, IGrainReminder)

Unregisters a reminder from the currently active grain.

UnregisterReminder(IGrainReminder)

Applies to