jellyfin/MediaBrowser.Controller/LiveTv/IListingsProvider.cs

27 lines
845 B
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
2018-12-28 00:27:57 +01:00
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.LiveTv;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Controller.LiveTv
{
public interface IListingsProvider
{
string Name { get; }
2019-09-25 17:19:48 +02:00
2018-12-28 00:27:57 +01:00
string Type { get; }
2019-09-25 17:19:48 +02:00
2018-12-28 00:27:57 +01:00
Task<IEnumerable<ProgramInfo>> GetProgramsAsync(ListingsProviderInfo info, string channelId, DateTime startDateUtc, DateTime endDateUtc, CancellationToken cancellationToken);
2019-09-25 17:19:48 +02:00
2018-12-28 00:27:57 +01:00
Task Validate(ListingsProviderInfo info, bool validateLogin, bool validateListings);
2019-09-25 17:19:48 +02:00
2018-12-28 00:27:57 +01:00
Task<List<NameIdPair>> GetLineups(ListingsProviderInfo info, string country, string location);
2019-09-25 17:19:48 +02:00
2018-12-28 00:27:57 +01:00
Task<List<ChannelInfo>> GetChannels(ListingsProviderInfo info, CancellationToken cancellationToken);
}
}