jellyfin-server/MediaBrowser.Server.Implementations/LiveTv/EmbyTV/IRecorder.cs

13 lines
333 B
C#
Raw Normal View History

2016-02-12 07:01:38 +00:00
using System;
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Model.Dto;
namespace MediaBrowser.Server.Implementations.LiveTv.EmbyTV
{
public interface IRecorder
{
Task Record(MediaSourceInfo mediaSource, string targetFile, Action onStarted, CancellationToken cancellationToken);
}
}