|
ProcessQueueTCanProcessItem Method
|
Determines if an item can be processed.
Namespace: GSF.CollectionsAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.218-beta+101eee949414e414795e55a6e73d88938f0177b8
Syntax protected 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