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.249-beta+56964f8aed6f3f2e54faec1539f7ce0ba6548fdf
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