aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Net/IWebSocketManager.cs
blob: d3f31de7c8519816d35ba0f2bf49f126cca32a22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Jellyfin.Data.Events;
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);
    }
}