You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.0 KiB
38 lines
1.0 KiB
using System;
|
|
using System.Web;
|
|
using System.Web.Caching;
|
|
using NLog;
|
|
using NzbDrone.Core.Providers.Jobs;
|
|
|
|
namespace NzbDrone.Core
|
|
{
|
|
class WebTimer
|
|
{
|
|
private readonly JobProvider _jobProvider;
|
|
|
|
private static CacheItemRemovedCallback _onCacheRemove;
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
|
|
public WebTimer(JobProvider jobProvider)
|
|
{
|
|
_jobProvider = jobProvider;
|
|
}
|
|
|
|
public void StartTimer(int secondInterval)
|
|
{
|
|
_onCacheRemove = new CacheItemRemovedCallback(DoWork);
|
|
|
|
HttpRuntime.Cache.Insert(GetType().ToString(), secondInterval, null,
|
|
DateTime.Now.AddSeconds(secondInterval), Cache.NoSlidingExpiration,
|
|
CacheItemPriority.NotRemovable, _onCacheRemove);
|
|
}
|
|
|
|
|
|
public void DoWork(string k, object v, CacheItemRemovedReason r)
|
|
{
|
|
_jobProvider.RunScheduled();
|
|
StartTimer(Convert.ToInt32(v));
|
|
}
|
|
}
|
|
}
|