users 存储用户ID对应的gate地址
| 21 | |
| 22 | // users 存储用户ID对应的gate地址 |
| 23 | type broker struct { |
| 24 | mbox chan message |
| 25 | gate sender |
| 26 | users map[int64]string |
| 27 | sync.RWMutex |
| 28 | } |
| 29 | |
| 30 | const ( |
| 31 | defaultPushChanSize = 1000 |
nothing calls this directly
no outgoing calls
no test coverage detected