Click or drag to resize

ProcessDictionaryTKey, TValueProcessItemFunctionSignature Delegate

Function signature that defines a method to process a key and value one at a time.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.258-beta+f8b6aa3dbfe0b4cc2b0b0760dd5d2a3dd4f59d09
Syntax
public delegate void ProcessItemFunctionSignature(
	TKey key,
	TValue value
)

Parameters

key  TKey
key to be processed.
value  TValue
value to be processed.
Remarks

Required unless ProcessItemsFunction is implemented.

Used when creating a ProcessDictionaryTKey, TValue to process one item at a time.

Asynchronous ProcessDictionaryTKey, TValue will process individual items on multiple threads

See Also