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