2020-09-24 14:04:21 -07:00
|
|
|
using System.Threading;
|
|
|
|
using MediaBrowser.Controller.Session;
|
2020-11-13 07:13:32 -07:00
|
|
|
using MediaBrowser.Model.SyncPlay;
|
2020-09-24 14:04:21 -07:00
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.SyncPlay
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Class SetPlaylistItemGroupRequest.
|
|
|
|
/// </summary>
|
2020-11-13 07:13:32 -07:00
|
|
|
public class SetPlaylistItemGroupRequest : IGroupPlaybackRequest
|
2020-09-24 14:04:21 -07:00
|
|
|
{
|
|
|
|
/// <summary>
|
2020-10-21 07:42:57 -07:00
|
|
|
/// Gets or sets the playlist identifier of the playing item.
|
2020-09-24 14:04:21 -07:00
|
|
|
/// </summary>
|
2020-10-21 07:42:57 -07:00
|
|
|
/// <value>The playlist identifier of the playing item.</value>
|
2020-09-24 14:04:21 -07:00
|
|
|
public string PlaylistItemId { get; set; }
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
2020-11-13 07:13:32 -07:00
|
|
|
public PlaybackRequestType Type { get; } = PlaybackRequestType.SetPlaylistItem;
|
2020-09-24 14:04:21 -07:00
|
|
|
|
|
|
|
/// <inheritdoc />
|
2020-11-13 07:13:32 -07:00
|
|
|
public void Apply(IGroupStateContext context, IGroupState state, SessionInfo session, CancellationToken cancellationToken)
|
2020-09-24 14:04:21 -07:00
|
|
|
{
|
2020-11-13 07:13:32 -07:00
|
|
|
state.HandleRequest(context, state.Type, this, session, cancellationToken);
|
2020-09-24 14:04:21 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|