jellyfin/MediaBrowser.Controller/Net/IWebSocketConnection.cs

73 lines
2.1 KiB
C#
Raw Normal View History

#nullable disable
#pragma warning disable CS1591
#nullable enable
using System;
2019-12-17 17:15:02 -05:00
using System.Net;
2018-12-27 18:27:57 -05:00
using System.Net.WebSockets;
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Model.Net;
using Microsoft.AspNetCore.Http;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Controller.Net
{
2019-12-27 08:42:53 -05:00
public interface IWebSocketConnection
2018-12-27 18:27:57 -05:00
{
/// <summary>
/// Occurs when [closed].
/// </summary>
event EventHandler<EventArgs>? Closed;
2018-12-27 18:27:57 -05:00
/// <summary>
/// Gets the last activity date.
/// </summary>
/// <value>The last activity date.</value>
DateTime LastActivityDate { get; }
/// <summary>
2020-04-17 07:47:00 -04:00
/// Gets or sets the date of last Keeplive received.
/// </summary>
/// <value>The date of last Keeplive received.</value>
2020-05-09 08:34:07 -04:00
DateTime LastKeepAliveDate { get; set; }
2020-04-17 07:47:00 -04:00
2018-12-27 18:27:57 -05:00
/// <summary>
/// Gets or sets the query string.
/// </summary>
/// <value>The query string.</value>
IQueryCollection QueryString { get; }
2018-12-27 18:27:57 -05:00
/// <summary>
/// Gets or sets the receive action.
/// </summary>
/// <value>The receive action.</value>
Func<WebSocketMessageInfo, Task>? OnReceive { get; set; }
2018-12-27 18:27:57 -05: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>
IPAddress? RemoteEndPoint { get; }
2018-12-27 18:27:57 -05:00
/// <summary>
/// Sends a message asynchronously.
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="message">The message.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns>
2019-01-13 15:37:13 -05:00
/// <exception cref="ArgumentNullException">message</exception>
2018-12-27 18:27:57 -05:00
Task SendAsync<T>(WebSocketMessage<T> message, CancellationToken cancellationToken);
2019-12-17 17:15:02 -05:00
Task ProcessAsync(CancellationToken cancellationToken = default);
2018-12-27 18:27:57 -05:00
}
}