forked from kidgrow-microservices-platform

zhaoxiaohao
2020-07-23 0c0e1e9adcc0102b2ed0d88f1fec94e83f4174e6
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.xxl.job.core.enums;
 
/**
 * Created by xuxueli on 17/5/10.
 */
public class RegistryConfig {
 
    public static final int BEAT_TIMEOUT = 30;
    public static final int DEAD_TIMEOUT = BEAT_TIMEOUT * 3;
 
    public enum RegistType{ EXECUTOR, ADMIN }
 
}