2020-08-22 12:56:24 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-12-17 15:15:02 -07:00
|
|
|
using System;
|
2019-01-13 13:01:16 -07:00
|
|
|
using System.Threading;
|
2018-12-27 16:27:57 -07:00
|
|
|
using System.Threading.Tasks;
|
2020-09-25 00:25:59 -07:00
|
|
|
using MediaBrowser.Model.Session;
|
2018-12-27 16:27:57 -07: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>
|
2020-09-25 00:25:59 -07:00
|
|
|
Task SendMessage<T>(SessionMessageType name, Guid messageId, T data, CancellationToken cancellationToken);
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
|
|
|
}
|