mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-22 22:15:17 -04:00
Async HttpClient and list lookup
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using NzbDrone.Core.Movies;
|
||||
using NzbDrone.Core.Movies.Credits;
|
||||
|
||||
@@ -10,5 +11,7 @@ namespace NzbDrone.Core.MetadataSource
|
||||
Movie GetMovieByImdbId(string imdbId);
|
||||
Tuple<Movie, List<Credit>> GetMovieInfo(int tmdbId);
|
||||
HashSet<int> GetChangedMovies(DateTime startTime);
|
||||
|
||||
Task<Tuple<Movie, List<Credit>>> GetMovieInfoAsync(int tmdbId);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user