Click or drag to resize

ProcessQueueTProcessItemsFunctionSignature Delegate

Function signature that defines a method to process multiple items at once.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.181-beta
Syntax
public delegate void ProcessItemsFunctionSignature(
	T[] items
)

Parameters

items  T
Items to be processed.
Remarks

Required unless ProcessItemFunction is implemented.

Creates an asynchronous ProcessQueueT to process groups of items simultaneously on multiple threads.

See Also