lin
2024-03-25 9f8f9d13c42ca8cdccbf351069082a5fdccef2e4
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.xxl.job.core.enums;
 
/**
 * @author liyh
 */
public class RegistryConfig {
 
    public static final int BEAT_TIMEOUT = 30;
    public static final int DEAD_TIMEOUT = BEAT_TIMEOUT * 3;
 
    public enum RegistType {EXECUTOR, ADMIN}
 
}