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;

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