Click or drag to resize

ProcessQueueTCanProcessItem Method

Determines if an item can be processed.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.230-beta+03417d7b5cff037b24e882d7adef82d359b34964
Syntax
protected virtual bool CanProcessItem(
	T item
)
View Source

Parameters

item  T
The item T to process.

Return Value

Boolean
A Boolean value indicating whether it can process the item or not.
Remarks

Use this function instead of invoking the CanProcessItemFunction pointer directly, since implementation of this delegate is optional.

See Also