blob: 5f3df1738d9042d2207e70eeba386f13b683a904 (
plain)
1
2
3
4
5
6
7
8
9
10
|
using System;
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);
}
}
|