Click or drag to resize
ThreadQueueWorkerTItem, TWorkerProcessItem Method
Processes the item in the queue. Override this method to process a single item from the queue.

Namespace: CMS.Base
Assembly: CMS.Base (in CMS.Base.dll) Version: 10.0.0
Syntax
C#
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