All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xin.alum.aim.constant.ChannelClose Maven / Gradle / Ivy

There is a newer version: 1.9.6
Show newest version
package xin.alum.aim.constant;

/**
 * 道通关闭类型
 *
 * @auther Alum(alum @ live.cn)
 * @date 2021/8/6 10:33
 */
public enum ChannelClose {
    HEARTBEAT("HEARTBEAT", 0),
    EXCEPTION("EXCEPTION", 1),
    CLOSE("CLOSE", 2);

    private String name;
    private int value;

    ChannelClose(String name, int value) {
        this.name = name;
        this.value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy