mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 02:49:05 -07:00
11 lines
221 B
C#
11 lines
221 B
C#
using System;
|
|
|
|
namespace MediaBrowser.Model.Threading
|
|
{
|
|
public interface ITimer : IDisposable
|
|
{
|
|
void Change(TimeSpan dueTime, TimeSpan period);
|
|
void Change(int dueTimeMs, int periodMs);
|
|
}
|
|
}
|