123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- package com.scbfkj.uni.system;
- import com.scbfkj.uni.service.DataProcessService;
- import java.util.HashMap;
- public class ScheduleTask implements Runnable {
- private String id; // 服务ID
- public String getId() {
- return id;
- }
- Integer loopCount = 0;
- int count = 0;
- private DataProcessService service;
- /**
- * @param id 任务ID
- */
- public ScheduleTask(String id) {
- this.id = id;
- }
- public ScheduleTask(String id, Integer loopCount) {
- this.id = id;
- this.loopCount = loopCount;
- }
- @Override
- public void run() {
- do {
- count++;
- try {
- service.process(new HashMap<>());
- } catch (Exception e) {
- throw new RuntimeException(e);
- }
- } while (loopCount > count);
- }
- }
|