aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Events/EventHelper.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Common/Events/EventHelper.cs')
-rw-r--r--MediaBrowser.Common/Events/EventHelper.cs104
1 files changed, 104 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Events/EventHelper.cs b/MediaBrowser.Common/Events/EventHelper.cs
new file mode 100644
index 000000000..bd2b1156e
--- /dev/null
+++ b/MediaBrowser.Common/Events/EventHelper.cs
@@ -0,0 +1,104 @@
+using MediaBrowser.Common.Logging;
+using System;
+using System.Threading.Tasks;
+
+namespace MediaBrowser.Common.Events
+{
+ /// <summary>
+ /// Class EventHelper
+ /// </summary>
+ 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>
+ public static void QueueEventIfNotNull(EventHandler handler, object sender, EventArgs args)
+ {
+ if (handler != null)
+ {
+ Task.Run(() =>
+ {
+ try
+ {
+ handler(sender, args);
+ }
+ catch (Exception ex)
+ {
+ Logger.LogException("Error in event handler", ex);
+ }
+ });
+ }
+ }
+
+ /// <summary>
+ /// Queues the event.
+ /// </summary>
+ /// <typeparam name="T"></typeparam>
+ /// <param name="handler">The handler.</param>
+ /// <param name="sender">The sender.</param>
+ /// <param name="args">The args.</param>
+ public static void QueueEventIfNotNull<T>(EventHandler<T> handler, object sender, T args)
+ {
+ if (handler != null)
+ {
+ Task.Run(() =>
+ {
+ try
+ {
+ handler(sender, args);
+ }
+ catch (Exception ex)
+ {
+ Logger.LogException("Error in event handler", ex);
+ }
+ });
+ }
+ }
+
+ /// <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>
+ public static void FireEventIfNotNull(EventHandler handler, object sender, EventArgs args)
+ {
+ if (handler != null)
+ {
+ try
+ {
+ handler(sender, args);
+ }
+ catch (Exception ex)
+ {
+ Logger.LogException("Error in event handler", ex);
+ }
+ }
+ }
+
+ /// <summary>
+ /// Fires the event.
+ /// </summary>
+ /// <typeparam name="T"></typeparam>
+ /// <param name="handler">The handler.</param>
+ /// <param name="sender">The sender.</param>
+ /// <param name="args">The args.</param>
+ public static void FireEventIfNotNull<T>(EventHandler<T> handler, object sender, T args)
+ {
+ if (handler != null)
+ {
+ try
+ {
+ handler(sender, args);
+ }
+ catch (Exception ex)
+ {
+ Logger.LogException("Error in event handler", ex);
+ }
+ }
+ }
+ }
+}