Webiant Logo Webiant Logo
  1. No results found.

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

IScheduleTask.cs

namespace Nop.Services.ScheduleTasks;

/// <summary>
/// Interface that should be implemented by each task
/// </summary>
public partial interface IScheduleTask
{
    /// <summary>
    /// Executes a task
    /// </summary>
    /// <returns>A task that represents the asynchronous operation</returns>
    Task ExecuteAsync();
}