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.
78 lines
3.2 KiB
78 lines
3.2 KiB
using MediaBrowser.Common.Net;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MediaBrowser.Controller.LiveTv
|
|
{
|
|
/// <summary>
|
|
/// Represents a single live tv back end (next pvr, media portal, etc).
|
|
/// </summary>
|
|
public interface ILiveTvService
|
|
{
|
|
/// <summary>
|
|
/// Gets the name.
|
|
/// </summary>
|
|
/// <value>The name.</value>
|
|
string Name { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the channels async.
|
|
/// </summary>
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
/// <returns>Task{IEnumerable{ChannelInfo}}.</returns>
|
|
Task<IEnumerable<ChannelInfo>> GetChannelsAsync(CancellationToken cancellationToken);
|
|
|
|
/// <summary>
|
|
/// Cancels the recording asynchronous.
|
|
/// </summary>
|
|
/// <param name="recordingId">The recording identifier.</param>
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
/// <returns>Task.</returns>
|
|
Task CancelRecordingAsync(string recordingId, CancellationToken cancellationToken);
|
|
|
|
/// <summary>
|
|
/// Deletes the recording asynchronous.
|
|
/// </summary>
|
|
/// <param name="recordingId">The recording identifier.</param>
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
/// <returns>Task.</returns>
|
|
Task DeleteRecordingAsync(string recordingId, CancellationToken cancellationToken);
|
|
|
|
/// <summary>
|
|
/// Schedules the recording asynchronous.
|
|
/// </summary>
|
|
/// <param name="name">The name for the recording</param>
|
|
/// <param name="channelId">The channel identifier.</param>
|
|
/// <param name="startTime">The start time.</param>
|
|
/// <param name="duration">The duration.</param>
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
/// <returns>Task.</returns>
|
|
Task ScheduleRecordingAsync(string name, string channelId, DateTime startTime, TimeSpan duration, CancellationToken cancellationToken);
|
|
|
|
/// <summary>
|
|
/// Gets the channel image asynchronous.
|
|
/// </summary>
|
|
/// <param name="channelId">The channel identifier.</param>
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
/// <returns>Task{Stream}.</returns>
|
|
Task<HttpResponseInfo> GetChannelImageAsync(string channelId, CancellationToken cancellationToken);
|
|
|
|
/// <summary>
|
|
/// Gets the recordings asynchronous.
|
|
/// </summary>
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
/// <returns>Task{IEnumerable{RecordingInfo}}.</returns>
|
|
Task<IEnumerable<RecordingInfo>> GetRecordingsAsync(CancellationToken cancellationToken);
|
|
|
|
/// <summary>
|
|
/// Gets the programs asynchronous.
|
|
/// </summary>
|
|
/// <param name="channelId">The channel identifier.</param>
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
/// <returns>Task{IEnumerable{ProgramInfo}}.</returns>
|
|
Task<IEnumerable<ProgramInfo>> GetProgramsAsync(string channelId, CancellationToken cancellationToken);
|
|
}
|
|
}
|