Click or drag to resize

PriorityQueueTEnqueue Method

Enqueues an item into the queue.

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.256-beta+0e7e94d39a9b10efe7e26e3b8d5130afc0dd4d74
Syntax
public void Enqueue(
	int priority,
	T item
)
View Source

Parameters

priority  Int32
The priority of the item.
item  T
The item to be enqueued.
Remarks
After adding an item to the queue, the heap will need to be fixed, therefore this is an O(log n) operation.
See Also