WorkerTModel, TItemDoBatchWorkCore Method TIBCO Spotfire 7.6 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: 25.11.10401.3615 (25.11.10401.3615)
Syntax

C#
protected virtual void DoBatchWorkCore(
	IList<TItem> workItems
)

Parameters

workItems
Type: System.Collections.GenericIListTItem
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.
Version Information

Supported in: 7.6, 7.5, 7.0, 6.5, 6.0, 5.5, 5.0
See Also

Reference