diff options
| author | Eric Reed <ebr@mediabrowser3.com> | 2013-04-22 11:27:23 -0400 |
|---|---|---|
| committer | Eric Reed <ebr@mediabrowser3.com> | 2013-04-22 11:27:23 -0400 |
| commit | 49cc12c4f56ceb51d1e03d405146ab2112411122 (patch) | |
| tree | c0076d970df935a724c1ad1b7fbfb9800d0682e3 /MediaBrowser.Controller/Library/ILibraryManager.cs | |
| parent | 8aa9a5ec63ff6c744c456bd0a2bb11d9da5b74e6 (diff) | |
| parent | a55999b780367dfa344bb0dfc754b5172b0b195a (diff) | |
Merge branch 'master' of https://github.com/MediaBrowser/MediaBrowser
Diffstat (limited to 'MediaBrowser.Controller/Library/ILibraryManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Library/ILibraryManager.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs index 86fd25e66..060f52e37 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -213,5 +213,13 @@ namespace MediaBrowser.Controller.Library /// <param name="parent">The parent.</param> /// <returns>IEnumerable{BaseItem}.</returns> IEnumerable<BaseItem> RetrieveChildren(Folder parent); + + /// <summary> + /// Validates the artists. + /// </summary> + /// <param name="cancellationToken">The cancellation token.</param> + /// <param name="progress">The progress.</param> + /// <returns>Task.</returns> + Task ValidateArtists(CancellationToken cancellationToken, IProgress<double> progress); } }
\ No newline at end of file |
