2019-01-13 21:02:23 +01:00
|
|
|
using System;
|
2018-12-27 18:27:57 -05: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);
|
|
|
|
|
}
|
|
|
|
|
}
|