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

cn.zhxu.bp.enums.EventStatus Maven / Gradle / Ivy

The newest version!
package cn.zhxu.bp.enums;

/**
 * 事件状态
 * @author Troy.Zhou @ 2022/9/21
 */
public enum EventStatus {

    /**
     * 待推送(尚未推送,或 推送失败 且 推送次数未达上限的任务)
     */
    PENDING, // 0

    /**
     * 推送中
     */
    PUSHING, // 1

    /**
     * 成功
     */
    SUCCESS, // 2

    /**
     * 失败(已达到最大重试次数)
     */
    FAILED,  // 3

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy