wasSharp
/Collections/Specialized/NotifyConcurrentQueueChangedAction.cs |
@@ -0,0 +1,37 @@ |
// -------------------------------------------------------------------------------------------------------------------- |
// <copyright file="ObservableConcurrentQueue.cs" company="BledSoft"> |
// 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/. |
// </copyright> |
// <Author> |
// Cheikh Younes |
// </Author> |
// -------------------------------------------------------------------------------------------------------------------- |
namespace wasSharp.Collections.Specialized |
{ |
/// <summary> |
/// The notify concurrent queue changed action. |
/// </summary> |
public enum NotifyConcurrentQueueChangedAction |
{ |
/// <summary> |
/// The enqueue |
/// </summary> |
Enqueue, |
|
/// <summary> |
/// The de-queue |
/// </summary> |
Dequeue, |
|
/// <summary> |
/// The peek |
/// </summary> |
Peek, |
|
/// <summary> |
/// The empty |
/// </summary> |
Empty |
} |
} |