2016-11-01 04:07:12 +00:00
|
|
|
|
using System;
|
|
|
|
|
using MediaBrowser.Model.Threading;
|
|
|
|
|
|
2017-08-16 06:43:41 +00:00
|
|
|
|
namespace Emby.Server.Implementations.Threading
|
2016-11-01 04:07:12 +00:00
|
|
|
|
{
|
|
|
|
|
public class TimerFactory : ITimerFactory
|
|
|
|
|
{
|
|
|
|
|
public ITimer Create(Action<object> callback, object state, TimeSpan dueTime, TimeSpan period)
|
|
|
|
|
{
|
|
|
|
|
return new CommonTimer(callback, state, dueTime, period);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ITimer Create(Action<object> callback, object state, int dueTimeMs, int periodMs)
|
|
|
|
|
{
|
|
|
|
|
return new CommonTimer(callback, state, dueTimeMs, periodMs);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|