We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06be595 commit 04fd7cdCopy full SHA for 04fd7cd
saturn-console-core/src/main/java/com/vip/saturn/job/console/service/StatisticsRefreshService.java
@@ -0,0 +1,16 @@
1
+package com.vip.saturn.job.console.service;
2
+
3
+import com.vip.saturn.job.console.exception.SaturnJobConsoleException;
4
5
+/**
6
+ * @author timmy.hu
7
+ */
8
+public interface StatisticsRefreshService {
9
10
+ void refreshStatistics(String zkClusterKey) throws SaturnJobConsoleException;
11
12
+ void refreshStatistics2DB(boolean force);
13
14
+ void refreshStatistics2DB(String zkClusterKey) throws SaturnJobConsoleException;
15
16
+}
0 commit comments