IReminderRegistry.GetReminders メソッド

定義

オーバーロード

GetReminders()
GetReminders(GrainId)

現在アクティブなグレインに登録されているすべてのアラームを取得します。

GetReminders()

ソース:
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))

戻り値

適用対象

GetReminders(GrainId)

現在アクティブなグレインに登録されているすべてのアラームを取得します。

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))

パラメーター

callingGrainId
GrainId

現在実行中のグレインの ID

戻り値

現在アクティブなグレインに登録されているすべてのアラーム。

適用対象