|
ProcessQueueTCanProcessItems Method
|
Determines if all items can be processed.
Namespace: GSF.CollectionsAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.232-beta+203aa83a5a82d50f387e69875549969ad138d6e0
Syntaxprotected virtual bool CanProcessItems(
T[] items
)
Protected Overridable Function CanProcessItems (
items As T()
) As Boolean
protected:
virtual bool CanProcessItems(
array<T>^ items
)
abstract CanProcessItems :
items : 'T[] -> bool
override CanProcessItems :
items : 'T[] -> bool
function CanProcessItems(items);
View SourceParameters
- items T
- An array of items of type T.
Return Value
BooleanA
Boolean value indicating whether the process queue can process the items.
Remarks
Use this function instead of invoking the CanProcessItemFunction pointer
directly, since implementation of this delegate is optional.
See Also