2019-01-13 20:02:23 +00:00
|
|
|
using System;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Threading
|
|
|
|
{
|
|
|
|
public interface ITimerFactory
|
|
|
|
{
|
|
|
|
ITimer Create(Action<object> callback, object state, TimeSpan dueTime, TimeSpan period);
|
|
|
|
ITimer Create(Action<object> callback, object state, int dueTimeMs, int periodMs);
|
|
|
|
}
|
|
|
|
}
|