jellyfin/Emby.Server.Implementations/HttpServer/IHttpListener.cs

41 lines
1.2 KiB
C#
Raw Normal View History

2019-11-01 13:38:54 -04:00
#pragma warning disable CS1591
2019-12-10 18:13:57 -05:00
#pragma warning disable SA1600
2019-11-01 13:38:54 -04:00
using System;
2017-05-22 00:54:02 -04:00
using System.Threading;
2014-12-27 17:52:41 -05:00
using System.Threading.Tasks;
2018-09-12 13:26:21 -04:00
using Emby.Server.Implementations.Net;
using MediaBrowser.Model.Services;
using Microsoft.AspNetCore.Http;
2014-07-18 18:14:59 -04:00
2016-11-03 21:18:51 -04:00
namespace Emby.Server.Implementations.HttpServer
2014-07-18 18:14:59 -04:00
{
public interface IHttpListener : IDisposable
{
/// <summary>
/// Gets or sets the error handler.
/// </summary>
/// <value>The error handler.</value>
2018-09-12 13:26:21 -04:00
Func<Exception, IRequest, bool, bool, Task> ErrorHandler { get; set; }
2014-07-18 18:14:59 -04:00
/// <summary>
/// Gets or sets the request handler.
/// </summary>
/// <value>The request handler.</value>
2017-09-03 03:28:58 -04:00
Func<IHttpRequest, string, string, string, CancellationToken, Task> RequestHandler { get; set; }
2014-07-18 18:14:59 -04:00
/// <summary>
/// Gets or sets the web socket handler.
/// </summary>
/// <value>The web socket handler.</value>
2015-03-08 15:48:30 -04:00
Action<WebSocketConnectEventArgs> WebSocketConnected { get; set; }
2014-07-18 18:14:59 -04:00
/// <summary>
/// Stops this instance.
/// </summary>
2017-09-03 03:28:58 -04:00
Task Stop();
Task ProcessWebSocketRequest(HttpContext ctx);
2014-07-18 18:14:59 -04:00
}
}