Files
ThingsGateway/src/Gateway/ThingsGateway.Gateway.Application/Common/Tasks/IScheduledTask.cs
2025-07-06 01:33:15 +08:00

16 lines
293 B
C#

namespace ThingsGateway.Gateway.Application
{
public interface IScheduledTask
{
bool Change(int dueTime, int period);
void SetNext(int interval);
void Start();
void Stop();
public Int32 Period { get; }
bool Enable { get; }
}
}