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 /// Observable Concurrent queue changed event handler
14 /// </summary>
15 /// <typeparam name="T">
16 /// The concurrent queue elements type
17 /// </typeparam>
18 /// <param name="sender">
19 /// The sender.
20 /// </param>
21 /// <param name="args">
22 /// The <see cref="NotifyConcurrentQueueChangedEventArgs{T}"/> instance containing the event data.
23 /// </param>
24 public delegate void ConcurrentQueueChangedEventHandler<T>(
25 object sender,
26 NotifyConcurrentQueueChangedEventArgs<T> args);
27 }