jellyfin/MediaBrowser.Controller/Net/IWebSocketConnection.cs

82 lines
2.8 KiB
C#
Raw Normal View History

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;
2023-07-02 18:14:44 -04:00
using MediaBrowser.Controller.Net.WebSocketMessages;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Controller.Net
{
/// <summary>
/// Interface for WebSocket connections.
/// </summary>
public interface IWebSocketConnection : IAsyncDisposable, IDisposable
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 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 authorization information.
/// </summary>
public AuthorizationInfo AuthorizationInfo { get; }
2018-12-27 18:27:57 -05:00
/// <summary>
/// Gets the remote end point.
/// </summary>
/// <value>The remote end point.</value>
IPAddress? RemoteEndPoint { get; }
2018-12-27 18:27:57 -05:00
2023-07-02 18:14:44 -04:00
/// <summary>
/// Sends a message asynchronously.
/// </summary>
/// <param name="message">The message.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns>
/// <exception cref="ArgumentNullException">The message is null.</exception>
Task SendAsync(OutboundWebSocketMessage message, CancellationToken cancellationToken);
2018-12-27 18:27:57 -05:00
/// <summary>
/// Sends a message asynchronously.
/// </summary>
/// <typeparam name="T">The type of websocket message data.</typeparam>
2018-12-27 18:27:57 -05:00
/// <param name="message">The message.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns>
/// <exception cref="ArgumentNullException">The message is null.</exception>
2023-07-02 18:14:44 -04:00
Task SendAsync<T>(OutboundWebSocketMessage<T> message, CancellationToken cancellationToken);
2018-12-27 18:27:57 -05:00
/// <summary>
/// Receives a message asynchronously.
/// </summary>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns>
Task ReceiveAsync(CancellationToken cancellationToken = default);
2018-12-27 18:27:57 -05:00
}
}