mirror of
				https://github.com/zoriya/Kyoo.git
				synced 2025-10-31 02:27:11 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			264 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			264 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.Collections.Generic;
 | |
| using Kyoo.Models;
 | |
| 
 | |
| namespace Kyoo.Controllers
 | |
| {
 | |
| 	public interface ITaskManager
 | |
| 	{
 | |
| 		bool StartTask(string taskSlug, string arguments = null);
 | |
| 		ITask GetRunningTask();
 | |
| 		void ReloadTask();
 | |
| 		IEnumerable<ITask> GetAllTasks();
 | |
| 	}
 | |
| } |