jellyfin/Emby.Dlna/Service/BaseService.cs

37 lines
1.2 KiB
C#
Raw Normal View History

2019-01-13 14:16:19 -05:00
using Emby.Dlna.Eventing;
using MediaBrowser.Common.Net;
using Microsoft.Extensions.Logging;
2016-10-29 18:22:20 -04:00
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;
2019-01-07 18:27:46 -05:00
HttpClient = httpClient;
2016-10-29 18:22:20 -04:00
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
}
}
}