mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 14:08:44 -04:00
10 lines
221 B
C#
10 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);
|
|
}
|
|
}
|