- 将注册类型枚举从 Const 类中提取为独立的 RegistType 类- 更新所有使用 Const.RegistType 的地方为 RegistType- 优化集合判空条件判断方式 - 添加必要的 import 语句以支持新的枚举类引用3.3.0-release
parent
75c49edbe7
commit
fa0ce058d8
@ -0,0 +1,18 @@
|
|||||||
|
package com.xxl.job.core.constant;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by xuxueli on 17/5/9.
|
||||||
|
*/
|
||||||
|
public enum RegistType{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* executor registry
|
||||||
|
*/
|
||||||
|
EXECUTOR,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* admin registry
|
||||||
|
*/
|
||||||
|
ADMIN;
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
Reference in new issue