2016-03-27 14:11:27 -07:00
|
|
|
|
using MediaBrowser.Controller;
|
2014-12-26 12:34:39 -07:00
|
|
|
|
using MediaBrowser.Controller.Net;
|
2013-02-21 13:26:35 -07:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
2013-02-21 21:23:06 -07:00
|
|
|
|
using MediaBrowser.Model.System;
|
2013-02-20 18:33:05 -07:00
|
|
|
|
using System.Threading.Tasks;
|
2016-10-31 20:07:45 -07:00
|
|
|
|
using MediaBrowser.Model.Threading;
|
2013-02-20 18:33:05 -07:00
|
|
|
|
|
2014-08-10 15:13:17 -07:00
|
|
|
|
namespace MediaBrowser.Api.System
|
2013-02-20 18:33:05 -07:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class SystemInfoWebSocketListener
|
|
|
|
|
/// </summary>
|
2014-05-10 10:28:03 -07:00
|
|
|
|
public class SystemInfoWebSocketListener : BasePeriodicWebSocketListener<SystemInfo, WebSocketListenerState>
|
2013-02-20 18:33:05 -07:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the name.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name.</value>
|
|
|
|
|
protected override string Name
|
|
|
|
|
{
|
|
|
|
|
get { return "SystemInfo"; }
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-22 08:16:48 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The _kernel
|
|
|
|
|
/// </summary>
|
2013-03-06 22:34:00 -07:00
|
|
|
|
private readonly IServerApplicationHost _appHost;
|
2013-02-22 08:16:48 -07:00
|
|
|
|
|
2013-02-21 13:26:35 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="SystemInfoWebSocketListener" /> class.
|
|
|
|
|
/// </summary>
|
2016-10-31 20:07:45 -07:00
|
|
|
|
public SystemInfoWebSocketListener(ILogger logger, IServerApplicationHost appHost, ITimerFactory timerFactory)
|
|
|
|
|
: base(logger, timerFactory)
|
2013-02-21 13:26:35 -07:00
|
|
|
|
{
|
2013-03-06 22:34:00 -07:00
|
|
|
|
_appHost = appHost;
|
2013-02-21 13:26:35 -07:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-20 18:33:05 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the data to send.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="state">The state.</param>
|
|
|
|
|
/// <returns>Task{SystemInfo}.</returns>
|
2014-05-10 10:28:03 -07:00
|
|
|
|
protected override Task<SystemInfo> GetDataToSend(WebSocketListenerState state)
|
2013-02-20 18:33:05 -07:00
|
|
|
|
{
|
2016-06-19 09:53:43 -07:00
|
|
|
|
return _appHost.GetSystemInfo();
|
2013-02-20 18:33:05 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|