Click or drag to resize

ProcessDictionary<TKey, TValue> .ProcessItemFunctionSignature 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.239-beta+5928cebde0dd955df84e791f5ea67acbd192773e
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 ProcessDictionary<TKey, TValue> to process one item at a time.

Asynchronous ProcessDictionary<TKey, TValue> will process individual items on multiple threads

See Also