aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Events/EventHelper.cs
diff options
context:
space:
mode:
authorLukePulverenti <luke.pulverenti@gmail.com>2013-02-20 20:33:05 -0500
committerLukePulverenti <luke.pulverenti@gmail.com>2013-02-20 20:33:05 -0500
commit767cdc1f6f6a63ce997fc9476911e2c361f9d402 (patch)
tree49add55976f895441167c66cfa95e5c7688d18ce /MediaBrowser.Common/Events/EventHelper.cs
parent845554722efaed872948a9e0f7202e3ef52f1b6e (diff)
Pushing missing changes
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 0000000000..bd2b1156ec
--- /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);
+ }
+ }
+ }
+ }
+}