jellyfin/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs

60 lines
1.8 KiB
C#
Raw Normal View History

2013-11-24 21:51:45 +01:00
using MediaBrowser.Model.LiveTv;
2013-11-25 21:39:23 +01:00
using MediaBrowser.Model.Querying;
using System.Collections.Generic;
namespace MediaBrowser.Controller.LiveTv
{
/// <summary>
/// Manages all live tv services installed on the server
/// </summary>
public interface ILiveTvManager
{
/// <summary>
/// Gets the services.
/// </summary>
/// <value>The services.</value>
IReadOnlyList<ILiveTvService> Services { get; }
/// <summary>
/// Adds the parts.
/// </summary>
/// <param name="services">The services.</param>
void AddParts(IEnumerable<ILiveTvService> services);
/// <summary>
2013-11-24 21:51:45 +01:00
/// Gets the channels.
/// </summary>
2013-11-24 21:51:45 +01:00
/// <param name="query">The query.</param>
/// <returns>IEnumerable{Channel}.</returns>
2013-11-25 21:39:23 +01:00
QueryResult<ChannelInfoDto> GetChannels(ChannelQuery query);
2013-11-24 21:51:45 +01:00
/// <summary>
2013-11-26 03:53:48 +01:00
/// Gets the recordings.
2013-11-24 21:51:45 +01:00
/// </summary>
2013-11-26 03:53:48 +01:00
/// <returns>QueryResult{RecordingInfoDto}.</returns>
QueryResult<RecordingInfoDto> GetRecordings();
2013-11-24 21:51:45 +01:00
/// <summary>
/// Gets the channel.
/// </summary>
2013-11-24 22:30:38 +01:00
/// <param name="id">The identifier.</param>
2013-11-24 21:51:45 +01:00
/// <returns>Channel.</returns>
2013-11-24 22:30:38 +01:00
Channel GetChannel(string id);
2013-11-25 17:15:31 +01:00
2013-11-26 03:53:48 +01:00
/// <summary>
/// Gets the channel.
/// </summary>
/// <param name="id">The identifier.</param>
/// <param name="userId">The user identifier.</param>
/// <returns>Channel.</returns>
ChannelInfoDto GetChannelInfoDto(string id, string userId);
2013-11-25 17:15:31 +01:00
/// <summary>
/// Gets the programs.
/// </summary>
/// <param name="query">The query.</param>
/// <returns>IEnumerable{ProgramInfo}.</returns>
2013-11-25 21:39:23 +01:00
QueryResult<ProgramInfoDto> GetPrograms(ProgramQuery query);
}
}