PriorityQueueTTryPeek(Int32, T) Method

Tries to return an object from the beginning of the PriorityQueueT without removing it.

Definition

Namespace: Gemstone.Threading.Collections
Assembly: Gemstone.Threading (in Gemstone.Threading.dll) Version: 1.0.110 -- Release Build+13c244059615c58a533059438f38d7e59ef0c2ea
public bool TryPeek(
	int priority,
	out T? result
)

Parameters

priority  Int32
The priority at which to peek into the queue.
result  T
When this method returns, result contains an object from the beginning of the PriorityQueueT or an unspecified value if the operation failed.

Return Value

Boolean
true if an object was returned successfully; otherwise, false.

See Also