wasSharp

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 53  →  ?path2? @ 54
/Collections/Specialized/ConcurrentQueueChangedEventHandler.cs
@@ -0,0 +1,27 @@
// --------------------------------------------------------------------------------------------------------------------
// <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>
/// Observable Concurrent queue changed event handler
/// </summary>
/// <typeparam name="T">
/// The concurrent queue elements type
/// </typeparam>
/// <param name="sender">
/// The sender.
/// </param>
/// <param name="args">
/// The <see cref="NotifyConcurrentQueueChangedEventArgs{T}"/> instance containing the event data.
/// </param>
public delegate void ConcurrentQueueChangedEventHandler<T>(
object sender,
NotifyConcurrentQueueChangedEventArgs<T> args);
}