Files
Umbraco-CMS/src/Umbraco.Web/Scheduling/IBackgroundTask.cs

12 lines
224 B
C#
Raw Normal View History

using System;
using System.Threading.Tasks;
namespace Umbraco.Web.Scheduling
{
internal interface IBackgroundTask : IDisposable
{
void Run();
Task RunAsync();
bool IsAsync { get; }
}
}