mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			293 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			293 B
		
	
	
	
		
			C#
		
	
	
	
	
	
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);
 | 
						|
    }
 | 
						|
}
 |