会话开始发送数据事件
| 25 | |
| 26 | // 会话开始发送数据事件 |
| 27 | type SendMsgEvent struct { |
| 28 | Ses Session |
| 29 | Msg interface{} // 用户需要发送的消息 |
| 30 | } |
| 31 | |
| 32 | func (self *SendMsgEvent) Message() interface{} { |
| 33 | return self.Msg |
nothing calls this directly
no outgoing calls
no test coverage detected