|
ProcessQueueTCanProcessItem Method
|
Determines if an item can be processed.
Namespace: GSF.CollectionsAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.207-beta+1781b796b2aa7a54013a031eb432fe4ccee31867
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