go-study/zinx/ziface/iserver.go
2025-09-14 16:22:50 +08:00

13 lines
262 B
Go

package ziface
type IServer interface {
// Start 启动服务器
Start()
// Stop 停止服务器
Stop()
// Serve 运行服务器
Serve()
// AddRouter 为服务注册路由方法,供客户端连接处理使用
AddRouter(msgID uint32, router IRouter)
}