You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
693 B
24 lines
693 B
using System.Threading;
|
|
using MediaBrowser.Model.SyncPlay;
|
|
using MediaBrowser.Controller.Session;
|
|
|
|
namespace MediaBrowser.Controller.SyncPlay
|
|
{
|
|
/// <summary>
|
|
/// Interface IPlaybackGroupRequest.
|
|
/// </summary>
|
|
public interface IPlaybackGroupRequest
|
|
{
|
|
/// <summary>
|
|
/// Gets the playback request type.
|
|
/// </summary>
|
|
/// <returns>The playback request type.</returns>
|
|
PlaybackRequestType GetRequestType();
|
|
|
|
/// <summary>
|
|
/// Applies the request to a group.
|
|
/// </summary>
|
|
void Apply(ISyncPlayStateContext context, ISyncPlayState state, SessionInfo session, CancellationToken cancellationToken);
|
|
}
|
|
}
|