From 46efa464d851d3f78b74ac02d061388115cf6d66 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 3 Nov 2016 21:18:51 -0400 Subject: move classes --- .../HttpServer/IHttpListener.cs | 46 ---------------------- 1 file changed, 46 deletions(-) delete mode 100644 MediaBrowser.Server.Implementations/HttpServer/IHttpListener.cs (limited to 'MediaBrowser.Server.Implementations/HttpServer/IHttpListener.cs') diff --git a/MediaBrowser.Server.Implementations/HttpServer/IHttpListener.cs b/MediaBrowser.Server.Implementations/HttpServer/IHttpListener.cs deleted file mode 100644 index 7db935d43..000000000 --- a/MediaBrowser.Server.Implementations/HttpServer/IHttpListener.cs +++ /dev/null @@ -1,46 +0,0 @@ -using MediaBrowser.Controller.Net; -using System; -using System.Collections.Generic; -using System.Threading.Tasks; -using MediaBrowser.Model.Services; - -namespace MediaBrowser.Server.Implementations.HttpServer -{ - public interface IHttpListener : IDisposable - { - /// - /// Gets or sets the error handler. - /// - /// The error handler. - Action ErrorHandler { get; set; } - - /// - /// Gets or sets the request handler. - /// - /// The request handler. - Func RequestHandler { get; set; } - - /// - /// Gets or sets the web socket handler. - /// - /// The web socket handler. - Action WebSocketConnected { get; set; } - - /// - /// Gets or sets the web socket connecting. - /// - /// The web socket connecting. - Action WebSocketConnecting { get; set; } - - /// - /// Starts this instance. - /// - /// The URL prefixes. - void Start(IEnumerable urlPrefixes); - - /// - /// Stops this instance. - /// - void Stop(); - } -} -- cgit v1.2.3