Click or drag to resize

ConcurrentTokenizedPriorityQueueTKey, TValue, TTokenTryUpdateKey Method

Tries to update the key associated with the provided token. The value is left as is.

Namespace: Altaxo.Collections
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public bool TryUpdateKey(
	TToken token,
	TKey key
)

Parameters

token  TToken
The token associated with the key.
key  TKey
The new key.

Return Value

Boolean
True if the key/value pair associated with the token still existed in the queue; otherwise false.
See Also