移除项目
老邱 authored at 2016-12-23 09:10:38
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);
    }
}