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.181-beta
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