jellyfin/Emby.Dlna/Service/BaseService.cs

38 lines
1.3 KiB
C#
Raw Normal View History

2016-10-29 18:22:20 -04:00
using MediaBrowser.Common.Net;
using MediaBrowser.Controller.Dlna;
2016-10-29 18:34:54 -04:00
using Emby.Dlna.Eventing;
2016-10-29 18:22:20 -04:00
using MediaBrowser.Model.Logging;
2016-10-29 18:34:54 -04:00
namespace Emby.Dlna.Service
2016-10-29 18:22:20 -04: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-10-04 14:51:26 -04:00
public EventSubscriptionResponse RenewEventSubscription(string subscriptionId, string notificationType, string timeoutString, string callbackUrl)
2016-10-29 18:22:20 -04:00
{
2017-10-04 14:51:26 -04:00
return EventManager.RenewEventSubscription(subscriptionId, notificationType, timeoutString, callbackUrl);
2016-10-29 18:22:20 -04:00
}
2017-07-20 16:37:13 -04:00
public EventSubscriptionResponse CreateEventSubscription(string notificationType, string timeoutString, string callbackUrl)
2016-10-29 18:22:20 -04:00
{
2017-07-20 16:37:13 -04:00
return EventManager.CreateEventSubscription(notificationType, timeoutString, callbackUrl);
2016-10-29 18:22:20 -04:00
}
}
}