globalkey.go 609 B

123456789101112131415161718192021222324252627
  1. //@File globalkey.go
  2. //@Time 2022/05/13
  3. //@Author #Suyghur,
  4. package globalkey
  5. const (
  6. ConnectTypeError = -1
  7. ConnectTypeNormalPlayer = 0
  8. ConnectTypeVipPlayer = 1
  9. ConnectTypeCs = 2
  10. )
  11. const (
  12. EventRemoveTimeoutJob = "EventRemoveTimeoutJob"
  13. EventHandleRmqJob = "EventHandleRmqJob"
  14. EventUnsubscribeRmqJob = "EventUnsubscribeRmq"
  15. EventNotifyUserOfflineJob = "EventNotifyUserOfflineJob"
  16. )
  17. const (
  18. All = "all"
  19. AllPlayer = "all_player"
  20. AllVipPlayer = "all_vip_player"
  21. AllNormalPlayer = "all_normal_player"
  22. AllCs = "all_cs"
  23. )