ThreadQueueWorkerTItem, TWorkerProcessItem Method |
Processes the item in the queue. Override this method to process a single item from the queue.
Namespace: CMS.BaseAssembly: CMS.Base (in CMS.Base.dll) Version: 12.0.0
Syntax protected abstract void ProcessItem(
TItem item
)
Parameters
- item
- Type: TItem
Item to process.
Remarks
If exception from override arises, the thread will not end, the rest of queue will be processed, but exception will not be logged.
Please consider implementing exception handling mechanism.
See Also