actor.go 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package nameActor
  2. const (
  3. Dev = "dev" // path = {center}.dev
  4. CenterOps = "ops" // path = {center}.ops
  5. CenterPlayer = "player" // path = {center}.player.{int}
  6. )
  7. const (
  8. GateUser = "user" // path = {gate}.user.
  9. GateSessions = "sessions" // path = {任意节点id}.sessions
  10. )
  11. const (
  12. Login = "login" // 登录 path = {game}.login
  13. Mail = "mail" // 邮件 path = {game}.mail
  14. GameOps = "ops" // 运维 path = {game}.ops
  15. GamePlayer = "player" // 玩家 path = {game}.player
  16. Marquee = "marquee" // 跑马灯 path = {game}.marquee
  17. Order = "order" // 充值订单 path = {game}.order
  18. )
  19. const (
  20. Chat_Game = "chatGame" // 聊天室.游戏 path = {chat}.chatGame
  21. Chat_League = "chatLeague" // 聊天室.联盟 path = {chat}.chatLeague
  22. Chat_Map = "chatMap" // 聊天室.地图 path = {chat}.chatMap
  23. Chat_Group = "chatGroup" // 聊天室.群组 path = {chat}.chatGroup
  24. )
  25. const (
  26. League = "league" //联盟 path = {league}.league.
  27. League_Ops = "ops" //联盟运维 path = {league}.ops
  28. )
  29. const (
  30. GenPool = "genPool" // 产出池 path = {任意节点id}.genPool
  31. )
  32. const (
  33. Record = "record" // 录像 path = {record}.record
  34. )