123456789101112 |
- using System.Threading.Tasks;
- using XdCxRhDW.Dto;
- namespace X2D1TaskServer
- {
- public interface BaseTaskI
- {
- void StartAsync(X2D1TaskHandleDto dto);
- bool Stop(int taskID);
- Task StopTask(int taskID, EnumTaskStopType type, string stopReason);
- }
- }
|