|
ProcessQueueTCanProcessItem Method
|
Determines if an item can be processed.
Namespace: GSF.CollectionsAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.230-beta+03417d7b5cff037b24e882d7adef82d359b34964
Syntaxprotected virtual bool CanProcessItem(
T item
)
Protected Overridable Function CanProcessItem (
item As T
) As Boolean
protected:
virtual bool CanProcessItem(
T item
)
abstract CanProcessItem :
item : 'T -> bool
override CanProcessItem :
item : 'T -> bool
function CanProcessItem(item);
View SourceParameters
- item T
- The item T to process.
Return Value
BooleanA
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