namespace Nop.Services.ScheduleTasks; /// /// Task manager interface /// public partial interface ITaskScheduler { /// /// Initializes task scheduler /// Task InitializeAsync(); /// /// Starts the task scheduler /// public void StartScheduler(); /// /// Stops the task scheduler /// public void StopScheduler(); }