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.
|
|
|
using System.Threading;
|
|
|
|
using MediaBrowser.Controller.Session;
|
|
|
|
using MediaBrowser.Model.SyncPlay;
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.SyncPlay.PlaybackRequests
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Class UnpauseGroupRequest.
|
|
|
|
/// </summary>
|
|
|
|
public class UnpauseGroupRequest : AbstractPlaybackRequest
|
|
|
|
{
|
|
|
|
/// <inheritdoc />
|
|
|
|
public override PlaybackRequestType Action { get; } = PlaybackRequestType.Unpause;
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
public override void Apply(IGroupStateContext context, IGroupState state, SessionInfo session, CancellationToken cancellationToken)
|
|
|
|
{
|
|
|
|
state.HandleRequest(context, state.Type, this, session, cancellationToken);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|