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.304-beta+e40582bbb64c28edadb696048770577c4e325275
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