Try your search with a different keyword or use * as a wildcard.
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();
}