mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 17:51:41 +01: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);
 | 
						|
    }
 | 
						|
}
 |