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.207-beta+1781b796b2aa7a54013a031eb432fe4ccee31867
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