jellyfin/MediaBrowser.Controller/Net/IWebSocketConnection.cs

71 lines
2.1 KiB
C#
Raw Normal View History

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