From 740a10a4e3f85ffcfd26ec18263d4c78d4b14ecc Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Tue, 10 Sep 2013 14:56:00 -0400 Subject: de-normalize item by name data. create counts during library scan for fast access. --- MediaBrowser.Controller/Library/ILibraryManager.cs | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) (limited to 'MediaBrowser.Controller/Library/ILibraryManager.cs') diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs index f4165a630..b6b80586a 100644 --- a/MediaBrowser.Controller/Library/ILibraryManager.cs +++ b/MediaBrowser.Controller/Library/ILibraryManager.cs @@ -235,6 +235,38 @@ namespace MediaBrowser.Controller.Library /// Task. Task ValidateArtists(CancellationToken cancellationToken, IProgress progress); + /// + /// Validates the music genres. + /// + /// The cancellation token. + /// The progress. + /// Task. + Task ValidateMusicGenres(CancellationToken cancellationToken, IProgress progress); + + /// + /// Validates the game genres. + /// + /// The cancellation token. + /// The progress. + /// Task. + Task ValidateGameGenres(CancellationToken cancellationToken, IProgress progress); + + /// + /// Validates the genres. + /// + /// The cancellation token. + /// The progress. + /// Task. + Task ValidateGenres(CancellationToken cancellationToken, IProgress progress); + + /// + /// Validates the studios. + /// + /// The cancellation token. + /// The progress. + /// Task. + Task ValidateStudios(CancellationToken cancellationToken, IProgress progress); + /// /// Occurs when [item added]. /// -- cgit v1.2.3