BatchSpooled 事件
在每个变更批已写入磁盘后发生。
命名空间: Microsoft.Synchronization.Data
程序集: Microsoft.Synchronization.Data(在 Microsoft.Synchronization.Data.dll 中)
语法
声明
Public Event BatchSpooled As EventHandler(Of DbBatchSpooledEventArgs)
用法
Dim instance As RelationalSyncProvider
Dim handler As EventHandler(Of DbBatchSpooledEventArgs)
AddHandler instance.BatchSpooled, handler
public event EventHandler<DbBatchSpooledEventArgs> BatchSpooled
public:
event EventHandler<DbBatchSpooledEventArgs^>^ BatchSpooled {
void add (EventHandler<DbBatchSpooledEventArgs^>^ value);
void remove (EventHandler<DbBatchSpooledEventArgs^>^ value);
}
member BatchSpooled : IEvent<EventHandler<DbBatchSpooledEventArgs>,
DbBatchSpooledEventArgs>
注释
默认情况下,Sync Framework 在单个 DataSet 对象中将变更传送给每个节点。仅当分批提交变更时,才激发 BatchSpooled 事件。有关更多信息,请参见如何分批传递变更 (SQL Server)。