优化ETL过滤模块
大石头 authored at 2017-08-29 17:11:46
220.00 B
X
using System;

namespace NewLife.Queue.Scheduling
{
    public interface IScheduleService
    {
        void StartTask(string name, Action action, int dueTime, int period);
        void StopTask(string name);
    }
}