Worker<TModel, TItem>.DoBatchWorkCore Method TIBCO Spotfire 6.0 API Reference
Override this method to handle a batch of work items at a time. You must call ReturnItem() for each work item in the batch. The default implementation calls DoWorkCore(TModel, TItem) followed by ReturnItem() for each work item.

Namespace: Spotfire.Dxp.Framework.Threading
Assembly: Spotfire.Dxp.Framework (in Spotfire.Dxp.Framework.dll) Version: 13.19.7018.3940 (13.19.7018.3940)
Syntax

protected virtual void DoBatchWorkCore(
	IList<TItem> workItems
)

Parameters

workItems
Type: System.Collections.Generic.IList<TItem>
List of work items. Always contains at least one item.
Remarks

To access the worker model, call WorkItem.ReadModel on any work item. The maximum number of work items received is determined by MaxBatchSize. Override CreateBatchPredicateCore(TItem) to control which work items to include in the batch.
See Also