| 12345678910111213141516171819 |
- package com.uas.search.service;
- import com.uas.search.schedule.TaskInformation;
- /**
- * 定时监控实时更新异常情况
- *
- * @author sunyj
- * @since 2016年12月19日 下午3:29:20
- */
- public interface RealTimeUpdateMonitorService {
- /**
- * 创建定时任务,监控实时更新异常情况
- *
- * @return
- */
- public TaskInformation newTask();
- }
|