mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-18 15:03:06 +03:00
Add GPL modules
This commit is contained in:
10
MediaBrowser.Model/Threading/ITimerFactory.cs
Normal file
10
MediaBrowser.Model/Threading/ITimerFactory.cs
Normal file
@@ -0,0 +1,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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user