// -------------------------------------------------------------------------------------------------------------------- // // This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. // To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/. // // // Cheikh Younes // // -------------------------------------------------------------------------------------------------------------------- namespace System.Collections.Concurrent { /// /// The notify concurrent queue changed action. /// public enum NotifyConcurrentQueueChangedAction { /// /// The enqueue /// Enqueue, /// /// The de-queue /// Dequeue, /// /// The peek /// Peek, /// /// The empty /// Empty } }