你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

IReliableDictionary<TKey,TValue>.RebuildNotificationAsyncCallback 属性

定义

在复制、还原或恢复期间重新生成 Reliable Dictionary 时调用的函数。

public Func<Microsoft.ServiceFabric.Data.Collections.IReliableDictionary<TKey,TValue>,Microsoft.ServiceFabric.Data.Notifications.NotifyDictionaryRebuildEventArgs<TKey,TValue>,System.Threading.Tasks.Task> RebuildNotificationAsyncCallback { set; }
member this.RebuildNotificationAsyncCallback : Func<Microsoft.ServiceFabric.Data.Collections.IReliableDictionary<'Key, 'Value>, Microsoft.ServiceFabric.Data.Notifications.NotifyDictionaryRebuildEventArgs<'Key, 'Value>, System.Threading.Tasks.Task>
Public Property RebuildNotificationAsyncCallback As Func(Of IReliableDictionary(Of TKey, TValue), NotifyDictionaryRebuildEventArgs(Of TKey, TValue), Task)

属性值

异步重新生成通知函数。 函数采用 IReliableDictionary 和 NotifyDictionaryRebuildEventArgs 令牌,并返回一个任务,表示重新生成通知的异步处理。

注解

NotifyDictionaryChangedEventArgs<TKey,TValue> 只能在此回调中使用。 异步回调完成后,将 NotifyDictionaryRebuildEventArgs<TKey,TValue> 变为无效。 有关详细信息,请参阅 此处

适用于