(conn ziface.IConnection)
| 123 | } |
| 124 | |
| 125 | func DoConnectionBegin(conn ziface.IConnection) { |
| 126 | fmt.Println("DoConnectionBegin is Called ... ") |
| 127 | err := conn.SendMsg(2, []byte("DoConnection BEGIN...")) |
| 128 | if err != nil { |
| 129 | fmt.Println(err) |
| 130 | } |
| 131 | } |
| 132 | |
| 133 | func DoConnectionLost(conn ziface.IConnection) { |
| 134 | fmt.Println("DoConnectionLost is Called ... ") |