次の方法で共有


IActorService.GetRemindersAsync メソッド

定義

アラームの一覧を取得します。

public System.Threading.Tasks.Task<Microsoft.ServiceFabric.Actors.Query.ReminderPagedResult<System.Collections.Generic.KeyValuePair<Microsoft.ServiceFabric.Actors.ActorId,System.Collections.Generic.List<Microsoft.ServiceFabric.Actors.Runtime.ActorReminderState>>>> GetRemindersAsync (Microsoft.ServiceFabric.Actors.ActorId actorId, Microsoft.ServiceFabric.Actors.Query.ContinuationToken continuationToken, System.Threading.CancellationToken cancellationToken);
abstract member GetRemindersAsync : Microsoft.ServiceFabric.Actors.ActorId * Microsoft.ServiceFabric.Actors.Query.ContinuationToken * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.ServiceFabric.Actors.Query.ReminderPagedResult<System.Collections.Generic.KeyValuePair<Microsoft.ServiceFabric.Actors.ActorId, System.Collections.Generic.List<Microsoft.ServiceFabric.Actors.Runtime.ActorReminderState>>>>
Public Function GetRemindersAsync (actorId As ActorId, continuationToken As ContinuationToken, cancellationToken As CancellationToken) As Task(Of ReminderPagedResult(Of KeyValuePair(Of ActorId, List(Of ActorReminderState))))

パラメーター

actorId
ActorId

アラームをフェッチする ActorId。 null 値は、サービス内のすべてのアクターを示します。

continuationToken
ContinuationToken

結果のクエリを開始する継続トークン。 継続トークンの null 値は、先頭から値を返し始めるという意味です。

cancellationToken
CancellationToken

キャンセル要求を監視するためのトークン。

戻り値

サーバーへの呼び出しの非同期操作を表すタスク。

例外

操作は取り消されました。

適用対象