diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-10-13 13:52:57 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-10-13 13:52:57 -0400 |
| commit | 2a44efaa42e17bbaea591fc602a93972d1cb9303 (patch) | |
| tree | 2cea8994f57c180e643a0c240f422d93eb72d386 /MediaBrowser.Controller/Library/IPeoplePrescanTask.cs | |
| parent | 73aec50dcc112e6ddede55c8ec0b56d9e243644c (diff) | |
fixes #585 - Use tmdb updates api for people
Diffstat (limited to 'MediaBrowser.Controller/Library/IPeoplePrescanTask.cs')
| -rw-r--r-- | MediaBrowser.Controller/Library/IPeoplePrescanTask.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Library/IPeoplePrescanTask.cs b/MediaBrowser.Controller/Library/IPeoplePrescanTask.cs new file mode 100644 index 000000000..04d179bae --- /dev/null +++ b/MediaBrowser.Controller/Library/IPeoplePrescanTask.cs @@ -0,0 +1,20 @@ +using System; +using System.Threading; +using System.Threading.Tasks; + +namespace MediaBrowser.Controller.Library +{ + /// <summary> + /// Interface IPeoplePrescanTask + /// </summary> + public interface IPeoplePrescanTask + { + /// <summary> + /// Runs the specified progress. + /// </summary> + /// <param name="progress">The progress.</param> + /// <param name="cancellationToken">The cancellation token.</param> + /// <returns>Task.</returns> + Task Run(IProgress<double> progress, CancellationToken cancellationToken); + } +} |
