diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-01-29 21:42:53 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-01-29 21:42:53 -0500 |
| commit | e20de8ffaddc1e1d61759442f53036abe4cfb100 (patch) | |
| tree | 12f25298a73cfbbc7cf9d6816b4fc4cd243b4628 | |
| parent | 3835657a238d2ed125dcf483f475fe526723d963 (diff) | |
update timer
| -rw-r--r-- | MediaBrowser.Server.Implementations/EntryPoints/LoadRegistrations.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/MediaBrowser.Server.Implementations/EntryPoints/LoadRegistrations.cs b/MediaBrowser.Server.Implementations/EntryPoints/LoadRegistrations.cs index 701cf21fb..efda36821 100644 --- a/MediaBrowser.Server.Implementations/EntryPoints/LoadRegistrations.cs +++ b/MediaBrowser.Server.Implementations/EntryPoints/LoadRegistrations.cs @@ -4,6 +4,7 @@ using MediaBrowser.Model.Logging; using System; using System.Threading; using System.Threading.Tasks; +using MediaBrowser.Common.Threading; namespace MediaBrowser.Server.Implementations.EntryPoints { @@ -22,7 +23,7 @@ namespace MediaBrowser.Server.Implementations.EntryPoints /// </summary> private readonly ILogger _logger; - private Timer _timer; + private PeriodicTimer _timer; /// <summary> /// Initializes a new instance of the <see cref="LoadRegistrations" /> class. @@ -41,7 +42,7 @@ namespace MediaBrowser.Server.Implementations.EntryPoints /// </summary> public void Run() { - _timer = new Timer(s => LoadAllRegistrations(), null, TimeSpan.FromMilliseconds(100), TimeSpan.FromHours(12)); + _timer = new PeriodicTimer(s => LoadAllRegistrations(), null, TimeSpan.FromMilliseconds(100), TimeSpan.FromHours(12)); } private async Task LoadAllRegistrations() |
