aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Threading/ITimer.cs
blob: 42090250bf74e06f738aaa9e2534f7535d4d7e80 (plain)
1
2
3
4
5
6
7
8
9
10
using System;

namespace MediaBrowser.Model.Threading
{
    public interface ITimer : IDisposable
    {
        void Change(TimeSpan dueTime, TimeSpan period);
        void Change(int dueTimeMs, int periodMs);
    }
}