ScheduleTask.java 853 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package com.scbfkj.uni.system;
  2. import com.scbfkj.uni.service.DataProcessService;
  3. import java.util.HashMap;
  4. public class ScheduleTask implements Runnable {
  5. private String id; // 服务ID
  6. public String getId() {
  7. return id;
  8. }
  9. Integer loopCount = 0;
  10. int count = 0;
  11. private DataProcessService service;
  12. /**
  13. * @param id 任务ID
  14. */
  15. public ScheduleTask(String id) {
  16. this.id = id;
  17. }
  18. public ScheduleTask(String id, Integer loopCount) {
  19. this.id = id;
  20. this.loopCount = loopCount;
  21. }
  22. @Override
  23. public void run() {
  24. do {
  25. count++;
  26. try {
  27. service.process(new HashMap<>());
  28. } catch (Exception e) {
  29. throw new RuntimeException(e);
  30. }
  31. } while (loopCount > count);
  32. }
  33. }