fixes #406 - Dashboard not refreshing

This commit is contained in:
Luke Pulverenti 2013-09-05 13:26:03 -04:00
parent 6d407033ce
commit cbf061d5f6

View File

@ -1,4 +1,5 @@
using MediaBrowser.Api;
using System.Threading;
using MediaBrowser.Api;
using MediaBrowser.Common;
using MediaBrowser.Common.Configuration;
using MediaBrowser.Common.Constants;
@ -512,6 +513,16 @@ namespace MediaBrowser.ServerApplication
/// </summary>
public override void Restart()
{
try
{
var task = ServerManager.SendWebSocketMessageAsync("ServerRestarting", () => string.Empty, CancellationToken.None);
task.Wait();
}
catch (Exception ex)
{
Logger.ErrorException("Error sending server restart web socket message", ex);
}
App.Instance.Restart();
}
@ -622,6 +633,16 @@ namespace MediaBrowser.ServerApplication
/// </summary>
public override void Shutdown()
{
try
{
var task = ServerManager.SendWebSocketMessageAsync("ServerShuttingDown", () => string.Empty, CancellationToken.None);
task.Wait();
}
catch (Exception ex)
{
Logger.ErrorException("Error sending server shutdown web socket message", ex);
}
App.Instance.Dispatcher.Invoke(App.Instance.Shutdown);
}