2020-08-22 12:56:24 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 13:01:16 -07:00
|
|
|
using System;
|
2019-12-17 15:15:02 -07:00
|
|
|
using System.Net;
|
2018-12-27 16:27:57 -07:00
|
|
|
using System.Net.WebSockets;
|
|
|
|
using System.Threading;
|
2019-01-13 12:25:32 -07:00
|
|
|
using System.Threading.Tasks;
|
|
|
|
using MediaBrowser.Model.Net;
|
2019-02-27 06:23:39 -07:00
|
|
|
using Microsoft.AspNetCore.Http;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Net
|
|
|
|
{
|
2019-12-27 06:42:53 -07:00
|
|
|
public interface IWebSocketConnection
|
2018-12-27 16:27:57 -07:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Occurs when [closed].
|
|
|
|
/// </summary>
|
2019-12-26 12:57:46 -07:00
|
|
|
event EventHandler<EventArgs>? Closed;
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the last activity date.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The last activity date.</value>
|
|
|
|
DateTime LastActivityDate { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
2020-04-17 04:47:00 -07:00
|
|
|
/// Gets or sets the date of last Keeplive received.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The date of last Keeplive received.</value>
|
2020-05-09 05:34:07 -07:00
|
|
|
DateTime LastKeepAliveDate { get; set; }
|
2020-04-17 04:47:00 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
/// <summary>
|
2021-05-11 04:55:46 -07:00
|
|
|
/// Gets the query string.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
|
|
|
/// <value>The query string.</value>
|
2019-12-26 12:57:46 -07:00
|
|
|
IQueryCollection QueryString { get; }
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the receive action.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The receive action.</value>
|
2019-12-26 12:57:46 -07:00
|
|
|
Func<WebSocketMessageInfo, Task>? OnReceive { get; set; }
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the state.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The state.</value>
|
|
|
|
WebSocketState State { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the remote end point.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The remote end point.</value>
|
2019-12-26 12:57:46 -07:00
|
|
|
IPAddress? RemoteEndPoint { get; }
|
2018-12-27 16:27:57 -07:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Sends a message asynchronously.
|
|
|
|
/// </summary>
|
2021-06-06 08:16:41 -07:00
|
|
|
/// <typeparam name="T">The type of websocket message data.</typeparam>
|
2018-12-27 16:27:57 -07:00
|
|
|
/// <param name="message">The message.</param>
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
/// <returns>Task.</returns>
|
2021-06-06 08:16:41 -07:00
|
|
|
/// <exception cref="ArgumentNullException">The message is null.</exception>
|
2018-12-27 16:27:57 -07:00
|
|
|
Task SendAsync<T>(WebSocketMessage<T> message, CancellationToken cancellationToken);
|
|
|
|
|
2019-12-17 15:15:02 -07:00
|
|
|
Task ProcessAsync(CancellationToken cancellationToken = default);
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
|
|
|
}
|