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