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.
38 lines
1.2 KiB
38 lines
1.2 KiB
using System;
|
|
using System.Threading;
|
|
using MediaBrowser.Controller.Session;
|
|
using MediaBrowser.Model.SyncPlay;
|
|
|
|
namespace MediaBrowser.Controller.SyncPlay.PlaybackRequests
|
|
{
|
|
/// <summary>
|
|
/// Class PreviousItemGroupRequest.
|
|
/// </summary>
|
|
public class PreviousItemGroupRequest : AbstractPlaybackRequest
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="PreviousItemGroupRequest"/> class.
|
|
/// </summary>
|
|
/// <param name="playlistItemId">The playing item identifier.</param>
|
|
public PreviousItemGroupRequest(Guid playlistItemId)
|
|
{
|
|
PlaylistItemId = playlistItemId;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the playing item identifier.
|
|
/// </summary>
|
|
/// <value>The playing item identifier.</value>
|
|
public Guid PlaylistItemId { get; }
|
|
|
|
/// <inheritdoc />
|
|
public override PlaybackRequestType Action { get; } = PlaybackRequestType.PreviousItem;
|
|
|
|
/// <inheritdoc />
|
|
public override void Apply(IGroupStateContext context, IGroupState state, SessionInfo session, CancellationToken cancellationToken)
|
|
{
|
|
state.HandleRequest(this, context, state.Type, session, cancellationToken);
|
|
}
|
|
}
|
|
}
|