mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
19 lines
476 B
C#
19 lines
476 B
C#
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace MediaBrowser.Controller.Net
|
|
{
|
|
/// <summary>
|
|
/// Interface IHttpServer.
|
|
/// </summary>
|
|
public interface IWebSocketManager
|
|
{
|
|
/// <summary>
|
|
/// The HTTP request handler.
|
|
/// </summary>
|
|
/// <param name="context">The current HTTP context.</param>
|
|
/// <returns>The task.</returns>
|
|
Task WebSocketRequestHandler(HttpContext context);
|
|
}
|
|
}
|