jellyfin/Emby.Dlna/Service/BaseService.cs

39 lines
1.3 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
using Emby.Dlna.Eventing;
2019-01-13 20:16:19 +01:00
using MediaBrowser.Common.Net;
using Microsoft.Extensions.Logging;
2016-10-30 00:22:20 +02:00
2016-10-30 00:34:54 +02:00
namespace Emby.Dlna.Service
2016-10-30 00:22:20 +02:00
{
public class BaseService : IEventManager
{
protected IEventManager EventManager;
protected IHttpClient HttpClient;
protected ILogger Logger;
2020-06-06 02:29:58 +02:00
protected BaseService(ILogger<BaseService> logger, IHttpClient httpClient)
2016-10-30 00:22:20 +02:00
{
Logger = logger;
2019-01-08 00:27:46 +01:00
HttpClient = httpClient;
2016-10-30 00:22:20 +02:00
2020-06-06 02:15:56 +02:00
EventManager = new EventManager(logger, HttpClient);
2016-10-30 00:22:20 +02:00
}
public EventSubscriptionResponse CancelEventSubscription(string subscriptionId)
{
return EventManager.CancelEventSubscription(subscriptionId);
}
2017-10-04 20:51:26 +02:00
public EventSubscriptionResponse RenewEventSubscription(string subscriptionId, string notificationType, string timeoutString, string callbackUrl)
2016-10-30 00:22:20 +02:00
{
2017-10-04 20:51:26 +02:00
return EventManager.RenewEventSubscription(subscriptionId, notificationType, timeoutString, callbackUrl);
2016-10-30 00:22:20 +02:00
}
2017-07-20 22:37:13 +02:00
public EventSubscriptionResponse CreateEventSubscription(string notificationType, string timeoutString, string callbackUrl)
2016-10-30 00:22:20 +02:00
{
2017-07-20 22:37:13 +02:00
return EventManager.CreateEventSubscription(notificationType, timeoutString, callbackUrl);
2016-10-30 00:22:20 +02:00
}
}
}