jellyfin/Emby.Dlna/Service/BaseService.cs

38 lines
1.2 KiB
C#
Raw Normal View History

2016-10-29 22:22:20 +00:00
using MediaBrowser.Common.Net;
using MediaBrowser.Controller.Dlna;
2016-10-29 22:34:54 +00:00
using Emby.Dlna.Eventing;
2016-10-29 22:22:20 +00:00
using MediaBrowser.Model.Logging;
2016-10-29 22:34:54 +00:00
namespace Emby.Dlna.Service
2016-10-29 22:22:20 +00:00
{
public class BaseService : IEventManager
{
protected IEventManager EventManager;
protected IHttpClient HttpClient;
protected ILogger Logger;
protected BaseService(ILogger logger, IHttpClient httpClient)
{
Logger = logger;
HttpClient = httpClient;
EventManager = new EventManager(Logger, HttpClient);
}
public EventSubscriptionResponse CancelEventSubscription(string subscriptionId)
{
return EventManager.CancelEventSubscription(subscriptionId);
}
2017-07-20 20:37:13 +00:00
public EventSubscriptionResponse RenewEventSubscription(string subscriptionId, string timeoutString)
2016-10-29 22:22:20 +00:00
{
2017-07-20 20:37:13 +00:00
return EventManager.RenewEventSubscription(subscriptionId, timeoutString);
2016-10-29 22:22:20 +00:00
}
2017-07-20 20:37:13 +00:00
public EventSubscriptionResponse CreateEventSubscription(string notificationType, string timeoutString, string callbackUrl)
2016-10-29 22:22:20 +00:00
{
2017-07-20 20:37:13 +00:00
return EventManager.CreateEventSubscription(notificationType, timeoutString, callbackUrl);
2016-10-29 22:22:20 +00:00
}
}
}