blob: 1161958a4be8977e94aab485428b1713815325bc (
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);
}
}
|