You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
301B

  1. from enum import Enum, unique
  2. # 异常枚举
  3. @unique
  4. class StatusType(Enum):
  5. WAITTING = (5, "待推流")
  6. RETRYING = (10, "重试中")
  7. RUNNING = (15, "推流中")
  8. STOPPING = (20, "停止中")
  9. SUCCESS = (25, "完成")
  10. TIMEOUT = (30, "超时")
  11. FAILED = (35, "失败")