namespace IFramework.Queue { /// /// 稳定优先级队列节点 /// public class StablePriorityQueueNode : FastPriorityQueueNode { /// /// 元素插入时的序号 /// public long insertPosition { get; internal set; } } }