You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
2.0 KiB
65 lines
2.0 KiB
using System;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace MediaBrowser.Common.Events
|
|
{
|
|
/// <summary>
|
|
/// Class EventHelper.
|
|
/// </summary>
|
|
// TODO: @bond Remove
|
|
public static class EventHelper
|
|
{
|
|
/// <summary>
|
|
/// Fires the event.
|
|
/// </summary>
|
|
/// <param name="handler">The handler.</param>
|
|
/// <param name="sender">The sender.</param>
|
|
/// <param name="args">The <see cref="EventArgs" /> instance containing the event data.</param>
|
|
/// <param name="logger">The logger.</param>
|
|
public static void QueueEventIfNotNull(EventHandler? handler, object sender, EventArgs args, ILogger logger)
|
|
{
|
|
if (handler != null)
|
|
{
|
|
Task.Run(() =>
|
|
{
|
|
try
|
|
{
|
|
handler(sender, args);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
logger.LogError(ex, "Error in event handler");
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Queues the event.
|
|
/// </summary>
|
|
/// <typeparam name="T">Argument type for the <c>handler</c>.</typeparam>
|
|
/// <param name="handler">The handler.</param>
|
|
/// <param name="sender">The sender.</param>
|
|
/// <param name="args">The args.</param>
|
|
/// <param name="logger">The logger.</param>
|
|
public static void QueueEventIfNotNull<T>(EventHandler<T>? handler, object sender, T args, ILogger logger)
|
|
{
|
|
if (handler != null)
|
|
{
|
|
Task.Run(() =>
|
|
{
|
|
try
|
|
{
|
|
handler(sender, args);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
logger.LogError(ex, "Error in event handler");
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|