Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

ITaskScheduler.cs

namespace Nop.Services.ScheduleTasks;

/// <summary>
/// Task manager interface
/// </summary>
public partial interface ITaskScheduler
{
    /// <summary>
    /// Initializes task scheduler
    /// </summary>
    /// <returns>A task that represents the asynchronous operation</returns>
    Task InitializeAsync();

    /// <summary>
    /// Starts the task scheduler
    /// </summary>
    /// <returns>A task that represents the asynchronous operation</returns>
    Task StartSchedulerAsync();

    /// <summary>
    /// Stops the task scheduler
    /// </summary>
    /// <returns>A task that represents the asynchronous operation</returns>
    Task StopSchedulerAsync();
}