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.
22 lines
659 B
22 lines
659 B
using System.Threading;
|
|
using MediaBrowser.Controller.Session;
|
|
using MediaBrowser.Model.SyncPlay;
|
|
|
|
namespace MediaBrowser.Controller.SyncPlay
|
|
{
|
|
/// <summary>
|
|
/// Class PauseGroupRequest.
|
|
/// </summary>
|
|
public class PauseGroupRequest : IGroupPlaybackRequest
|
|
{
|
|
/// <inheritdoc />
|
|
public PlaybackRequestType Type { get; } = PlaybackRequestType.Pause;
|
|
|
|
/// <inheritdoc />
|
|
public void Apply(IGroupStateContext context, IGroupState state, SessionInfo session, CancellationToken cancellationToken)
|
|
{
|
|
state.HandleRequest(context, state.Type, this, session, cancellationToken);
|
|
}
|
|
}
|
|
}
|