actor.go 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. )
  18. const (
  19. Order = "order" // path = pay.order.
  20. )
  21. const (
  22. Chat_Game = "chatGame" // 聊天室.游戏 path = {chat}.chatGame
  23. Chat_League = "chatLeague" // 聊天室.联盟 path = {chat}.chatLeague
  24. Chat_Map = "chatMap" // 聊天室.地图 path = {chat}.chatMap
  25. Chat_Group = "chatGroup" // 聊天室.群组 path = {chat}.chatGroup
  26. )
  27. const (
  28. League = "league" //联盟 path = {league}.league.
  29. League_Ops = "ops" //联盟运维 path = {league}.ops
  30. )
  31. const (
  32. GenPool = "genPool" // 产出池 path = {任意节点id}.genPool
  33. )
  34. const (
  35. Record = "record" // 录像 path = {record}.record
  36. )