2020-08-22 19:56:24 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-12-17 22:15:02 +00:00
|
|
|
using System;
|
2019-01-13 20:01:16 +00:00
|
|
|
using System.Threading;
|
2018-12-27 23:27:57 +00:00
|
|
|
using System.Threading.Tasks;
|
2020-09-25 07:25:59 +00:00
|
|
|
using MediaBrowser.Model.Session;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Session
|
|
|
|
{
|
|
|
|
public interface ISessionController
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets a value indicating whether this instance is session active.
|
|
|
|
/// </summary>
|
|
|
|
/// <value><c>true</c> if this instance is session active; otherwise, <c>false</c>.</value>
|
|
|
|
bool IsSessionActive { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets a value indicating whether [supports media remote control].
|
|
|
|
/// </summary>
|
|
|
|
/// <value><c>true</c> if [supports media remote control]; otherwise, <c>false</c>.</value>
|
|
|
|
bool SupportsMediaControl { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Sends the message.
|
|
|
|
/// </summary>
|
2021-08-10 02:47:26 +00:00
|
|
|
/// <typeparam name="T">The type of data.</typeparam>
|
|
|
|
/// <param name="name">Name of message type.</param>
|
|
|
|
/// <param name="messageId">Message ID.</param>
|
|
|
|
/// <param name="data">Data to send.</param>
|
|
|
|
/// <param name="cancellationToken">CancellationToken for operation.</param>
|
|
|
|
/// <returns>A task.</returns>
|
2020-09-25 07:25:59 +00:00
|
|
|
Task SendMessage<T>(SessionMessageType name, Guid messageId, T data, CancellationToken cancellationToken);
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
}
|