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.250-beta+e1aac152bf9c38c67035c6d283461f222e39e02a
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