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.
57 lines
2.3 KiB
57 lines
2.3 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using MediaBrowser.Controller.Session;
|
|
using MediaBrowser.Controller.SyncPlay.Requests;
|
|
using MediaBrowser.Model.SyncPlay;
|
|
using MediaBrowser.Model.SyncPlay.RequestBodies;
|
|
|
|
namespace MediaBrowser.Controller.SyncPlay
|
|
{
|
|
/// <summary>
|
|
/// Interface ISyncPlayManager.
|
|
/// </summary>
|
|
public interface ISyncPlayManager
|
|
{
|
|
/// <summary>
|
|
/// Creates a new group.
|
|
/// </summary>
|
|
/// <param name="session">The session that's creating the group.</param>
|
|
/// <param name="request">The request.</param>
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
void NewGroup(SessionInfo session, NewGroupRequest request, CancellationToken cancellationToken);
|
|
|
|
/// <summary>
|
|
/// Adds the session to a group.
|
|
/// </summary>
|
|
/// <param name="session">The session.</param>
|
|
/// <param name="request">The request.</param>
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
void JoinGroup(SessionInfo session, JoinGroupRequest request, CancellationToken cancellationToken);
|
|
|
|
/// <summary>
|
|
/// Removes the session from a group.
|
|
/// </summary>
|
|
/// <param name="session">The session.</param>
|
|
/// <param name="request">The request.</param>
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
void LeaveGroup(SessionInfo session, LeaveGroupRequest request, CancellationToken cancellationToken);
|
|
|
|
/// <summary>
|
|
/// Gets list of available groups for a session.
|
|
/// </summary>
|
|
/// <param name="session">The session.</param>
|
|
/// <param name="request">The request.</param>
|
|
/// <returns>The list of available groups.</returns>
|
|
List<GroupInfoDto> ListGroups(SessionInfo session, ListGroupsRequest request);
|
|
|
|
/// <summary>
|
|
/// Handle a request by a session in a group.
|
|
/// </summary>
|
|
/// <param name="session">The session.</param>
|
|
/// <param name="request">The request.</param>
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
void HandleRequest(SessionInfo session, IGroupPlaybackRequest request, CancellationToken cancellationToken);
|
|
}
|
|
}
|