ProcessQueueTCanProcessItem Method

Determines if an item can be processed.

Definition

Namespace: Gemstone.Threading.Collections
Assembly: Gemstone.Threading (in Gemstone.Threading.dll) Version: 1.0.158 -- Release Build+5f840a50b8123565ea38e0c1d6c00b5650022b4a
protected virtual bool CanProcessItem(
	T item
)

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