mirror of
https://github.com/duanhf2012/origin.git
synced 2026-02-04 06:54:45 +08:00
12 lines
323 B
Go
12 lines
323 B
Go
package tcpgateway
|
|
|
|
type IRouter interface {
|
|
RouterMessage(clientId uint64,msgType uint16,msg []byte) //消息转发
|
|
RouterEvent(clientId uint64,eventType string) bool//消息转发
|
|
Load() //加载路由规则
|
|
|
|
OnDisconnected(clientId uint64)
|
|
OnConnected(clientId uint64)
|
|
//ReplyMessage(clientId uint64,msg []byte)
|
|
}
|