2019-01-13 19:54:44 +00:00
|
|
|
using System;
|
2014-07-18 22:14:59 +00:00
|
|
|
using System.Collections.Generic;
|
2017-05-22 04:54:02 +00:00
|
|
|
using System.Threading;
|
2014-12-27 22:52:41 +00:00
|
|
|
using System.Threading.Tasks;
|
2018-09-12 17:26:21 +00:00
|
|
|
using Emby.Server.Implementations.Net;
|
2019-01-13 19:20:41 +00:00
|
|
|
using MediaBrowser.Controller.Net;
|
|
|
|
using MediaBrowser.Model.Services;
|
2014-07-18 22:14:59 +00:00
|
|
|
|
2016-11-04 01:18:51 +00:00
|
|
|
namespace Emby.Server.Implementations.HttpServer
|
2014-07-18 22:14:59 +00:00
|
|
|
{
|
|
|
|
public interface IHttpListener : IDisposable
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the error handler.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The error handler.</value>
|
2018-09-12 17:26:21 +00:00
|
|
|
Func<Exception, IRequest, bool, bool, Task> ErrorHandler { get; set; }
|
2014-07-18 22:14:59 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the request handler.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The request handler.</value>
|
2017-09-03 07:28:58 +00:00
|
|
|
Func<IHttpRequest, string, string, string, CancellationToken, Task> RequestHandler { get; set; }
|
2014-07-18 22:14:59 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the web socket handler.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The web socket handler.</value>
|
2015-03-08 19:48:30 +00:00
|
|
|
Action<WebSocketConnectEventArgs> WebSocketConnected { get; set; }
|
2014-07-18 22:14:59 +00:00
|
|
|
|
2015-03-08 19:48:30 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the web socket connecting.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The web socket connecting.</value>
|
|
|
|
Action<WebSocketConnectingEventArgs> WebSocketConnecting { get; set; }
|
2019-01-07 23:27:46 +00:00
|
|
|
|
2014-07-18 22:14:59 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Starts this instance.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="urlPrefixes">The URL prefixes.</param>
|
|
|
|
void Start(IEnumerable<string> urlPrefixes);
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Stops this instance.
|
|
|
|
/// </summary>
|
2017-09-03 07:28:58 +00:00
|
|
|
Task Stop();
|
2014-07-18 22:14:59 +00:00
|
|
|
}
|
|
|
|
}
|