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