wasSharp – Blame information for rev 54

Subversion Repositories:
Rev:
Rev Author Line No. Line
54 office 1 // --------------------------------------------------------------------------------------------------------------------
2 // <copyright file="ObservableConcurrentQueue.cs" company="BledSoft">
3 // This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
4 // To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/.
5 // </copyright>
6 // <Author>
7 // Cheikh Younes
8 // </Author>
9 // --------------------------------------------------------------------------------------------------------------------
10 namespace wasSharp.Collections.Specialized
11 {
12 /// <summary>
13 /// The notify concurrent queue changed action.
14 /// </summary>
15 public enum NotifyConcurrentQueueChangedAction
16 {
17 /// <summary>
18 /// The enqueue
19 /// </summary>
20 Enqueue,
21  
22 /// <summary>
23 /// The de-queue
24 /// </summary>
25 Dequeue,
26  
27 /// <summary>
28 /// The peek
29 /// </summary>
30 Peek,
31  
32 /// <summary>
33 /// The empty
34 /// </summary>
35 Empty
36 }
37 }