2019-01-13 20:01:16 +00:00
|
|
|
using System.Threading.Tasks;
|
2022-01-01 16:59:25 +00:00
|
|
|
using Microsoft.AspNetCore.Http;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Net
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-11-28 10:21:53 +00:00
|
|
|
/// Interface for listening to messages coming through a web socket connection.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
public interface IWebSocketListener
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Processes the message.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="message">The message.</param>
|
|
|
|
/// <returns>Task.</returns>
|
2019-02-24 02:16:19 +00:00
|
|
|
Task ProcessMessageAsync(WebSocketMessageInfo message);
|
2020-11-28 10:21:53 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Processes a new web socket connection.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="connection">An instance of the <see cref="IWebSocketConnection"/> interface.</param>
|
2022-01-01 16:59:25 +00:00
|
|
|
/// <param name="httpContext">The current http context.</param>
|
2020-11-28 10:21:53 +00:00
|
|
|
/// <returns>Task.</returns>
|
2022-01-01 16:59:25 +00:00
|
|
|
Task ProcessWebSocketConnectedAsync(IWebSocketConnection connection, HttpContext httpContext);
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
}
|