You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.1 KiB
C#

9 months ago
// --------------------------------------------------------------------------------------------------------------------
// <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 System.Collections.Concurrent
{
/// <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
}
}