namespace Nop.Services.ScheduleTasks;
///
/// Task manager interface
///
public partial interface ITaskScheduler
{
///
/// Initializes task scheduler
///
/// A task that represents the asynchronous operation
Task InitializeAsync();
///
/// Starts the task scheduler
///
/// A task that represents the asynchronous operation
Task StartSchedulerAsync();
///
/// Stops the task scheduler
///
/// A task that represents the asynchronous operation
Task StopSchedulerAsync();
}