connection
| 141 | // connection |
| 142 | |
| 143 | type CallBack interface { |
| 144 | OnMessage(c *Connection, ctx interface{}, data []byte) interface{} |
| 145 | OnClose(c *Connection) |
| 146 | } |
| 147 | |
| 148 | // Connection TCP 连接 |
| 149 | type Connection struct { |
nothing calls this directly
no outgoing calls
no test coverage detected