created entry point classes for the startup wizard and new item notifications

This commit is contained in:
LukePulverenti
2013-03-03 00:20:14 -05:00
parent 1ffc19a9a0
commit f26a3e3c61
7 changed files with 207 additions and 142 deletions

View File

@@ -40,20 +40,6 @@ namespace MediaBrowser.Common.Kernel
}
#endregion
#region ReloadCompleted Event
/// <summary>
/// Fires whenever the kernel completes reloading
/// </summary>
public event EventHandler<EventArgs> ReloadCompleted;
/// <summary>
/// Called when [reload completed].
/// </summary>
private void OnReloadCompleted()
{
EventHelper.QueueEventIfNotNull(ReloadCompleted, this, EventArgs.Empty, Logger);
}
#endregion
#region ApplicationUpdated Event
/// <summary>
/// Occurs when [application updated].
@@ -206,9 +192,7 @@ namespace MediaBrowser.Common.Kernel
{
ReloadInternal();
OnReloadCompleted();
Logger.Info("Kernel.Reload Complete");
Logger.Info("Kernel.Init Complete");
}
/// <summary>