12 lines
No EOL
255 B
C#
12 lines
No EOL
255 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PhoenixLib.Scheduler
|
|
{
|
|
public interface ICron
|
|
{
|
|
IDisposable Schedule(TimeSpan interval, Action callback);
|
|
|
|
IDisposable Schedule(TimeSpan interval, Func<Task> callback);
|
|
}
|
|
} |