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
|
|
|
|
2020-11-14 15:40:01 -07:00
|
|
|
namespace MediaBrowser.Controller.SyncPlay.PlaybackRequests
|
2020-09-24 14:04:21 -07:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Class SetRepeatModeGroupRequest.
|
|
|
|
/// </summary>
|
2020-11-13 07:13:32 -07:00
|
|
|
public class SetRepeatModeGroupRequest : IGroupPlaybackRequest
|
2020-09-24 14:04:21 -07:00
|
|
|
{
|
|
|
|
/// <summary>
|
2020-11-14 15:40:01 -07:00
|
|
|
/// Initializes a new instance of the <see cref="SetRepeatModeGroupRequest"/> class.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="mode">The repeat mode.</param>
|
|
|
|
public SetRepeatModeGroupRequest(GroupRepeatMode mode)
|
|
|
|
{
|
|
|
|
Mode = mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the repeat mode.
|
2020-09-24 14:04:21 -07:00
|
|
|
/// </summary>
|
|
|
|
/// <value>The repeat mode.</value>
|
2020-11-14 15:40:01 -07:00
|
|
|
public GroupRepeatMode Mode { get; }
|
2020-09-24 14:04:21 -07:00
|
|
|
|
|
|
|
/// <inheritdoc />
|
2020-11-13 07:13:32 -07:00
|
|
|
public PlaybackRequestType Type { get; } = PlaybackRequestType.SetRepeatMode;
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|