1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-22 17:31:47 +02:00
Radarr/NzbDrone.Core/Providers/Jobs/EpisodeSearchJob.cs
Mark McDowall 0b586de226 Added misnamed provider, PLINQ speeds it up, but still to slow for use, paging helps, but isn't consistent.
A bunch of files changed removing System.Linq, thanks Resharper :(
2011-09-03 20:05:44 -07:00

44 lines
1017 B
C#

using System;
using System.Collections.Generic;
using NLog;
using Ninject;
using NzbDrone.Core.Model;
using NzbDrone.Core.Model.Notification;
using NzbDrone.Core.Repository;
namespace NzbDrone.Core.Providers.Jobs
{
public class EpisodeSearchJob : IJob
{
private readonly SearchProvider _searchProvider;
[Inject]
public EpisodeSearchJob(SearchProvider searchProvider)
{
_searchProvider = searchProvider;
}
public EpisodeSearchJob()
{
}
public string Name
{
get { return "Episode Search"; }
}
public int DefaultInterval
{
get { return 0; }
}
public virtual void Start(ProgressNotification notification, int targetId, int secondaryTargetId)
{
if (targetId <= 0)
throw new ArgumentOutOfRangeException("targetId");
_searchProvider.EpisodeSearch(notification, targetId);
}
}
}