aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/Eventing
diff options
context:
space:
mode:
authorPatrick Barron <barronpm@gmail.com>2020-08-13 15:47:31 -0400
committerPatrick Barron <barronpm@gmail.com>2020-08-13 15:47:31 -0400
commitda9bcc5fb3a9544e2f9bf9fa3ccbd03837d060ed (patch)
treed1367b8c0bdd1be9c47ada52af3e1052e8663096 /Emby.Dlna/Eventing
parent27c8cf043107263282d210eaef8d0d32ac2fbf23 (diff)
Rename IEventManager to IDlnaEventManager
Diffstat (limited to 'Emby.Dlna/Eventing')
-rw-r--r--Emby.Dlna/Eventing/DlnaEventManager.cs (renamed from Emby.Dlna/Eventing/EventManager.cs)4
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Dlna/Eventing/EventManager.cs b/Emby.Dlna/Eventing/DlnaEventManager.cs
index 7d02f5e960..7822952907 100644
--- a/Emby.Dlna/Eventing/EventManager.cs
+++ b/Emby.Dlna/Eventing/DlnaEventManager.cs
@@ -14,7 +14,7 @@ using Microsoft.Extensions.Logging;
namespace Emby.Dlna.Eventing
{
- public class EventManager : IEventManager
+ public class DlnaEventManager : IDlnaEventManager
{
private readonly ConcurrentDictionary<string, EventSubscription> _subscriptions =
new ConcurrentDictionary<string, EventSubscription>(StringComparer.OrdinalIgnoreCase);
@@ -22,7 +22,7 @@ namespace Emby.Dlna.Eventing
private readonly ILogger _logger;
private readonly IHttpClient _httpClient;
- public EventManager(ILogger logger, IHttpClient httpClient)
+ public DlnaEventManager(ILogger logger, IHttpClient httpClient)
{
_httpClient = httpClient;
_logger = logger;