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.
62 lines
2.2 KiB
62 lines
2.2 KiB
using System;
|
|
using System.Threading;
|
|
using MediaBrowser.Controller.Session;
|
|
using MediaBrowser.Model.SyncPlay;
|
|
|
|
namespace MediaBrowser.Controller.SyncPlay.PlaybackRequests
|
|
{
|
|
/// <summary>
|
|
/// Class ReadyGroupRequest.
|
|
/// </summary>
|
|
public class ReadyGroupRequest : AbstractPlaybackRequest
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ReadyGroupRequest"/> class.
|
|
/// </summary>
|
|
/// <param name="when">When the request has been made, as reported by the client.</param>
|
|
/// <param name="positionTicks">The position ticks.</param>
|
|
/// <param name="isPlaying">Whether the client playback is unpaused.</param>
|
|
/// <param name="playlistItemId">The playlist item identifier of the playing item.</param>
|
|
public ReadyGroupRequest(DateTime when, long positionTicks, bool isPlaying, Guid playlistItemId)
|
|
{
|
|
When = when;
|
|
PositionTicks = positionTicks;
|
|
IsPlaying = isPlaying;
|
|
PlaylistItemId = playlistItemId;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets when the request has been made by the client.
|
|
/// </summary>
|
|
/// <value>The date of the request.</value>
|
|
public DateTime When { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the position ticks.
|
|
/// </summary>
|
|
/// <value>The position ticks.</value>
|
|
public long PositionTicks { get; }
|
|
|
|
/// <summary>
|
|
/// Gets a value indicating whether the client playback is unpaused.
|
|
/// </summary>
|
|
/// <value>The client playback status.</value>
|
|
public bool IsPlaying { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the playlist item identifier of the playing item.
|
|
/// </summary>
|
|
/// <value>The playlist item identifier.</value>
|
|
public Guid PlaylistItemId { get; }
|
|
|
|
/// <inheritdoc />
|
|
public override PlaybackRequestType Action { get; } = PlaybackRequestType.Ready;
|
|
|
|
/// <inheritdoc />
|
|
public override void Apply(IGroupStateContext context, IGroupState state, SessionInfo session, CancellationToken cancellationToken)
|
|
{
|
|
state.HandleRequest(this, context, state.Type, session, cancellationToken);
|
|
}
|
|
}
|
|
}
|