You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
845 B
24 lines
845 B
// Package ziface 主要提供zinx全部抽象层接口定义.
|
|
// 包括:
|
|
// IServer 服务mod接口
|
|
// IRouter 路由mod接口
|
|
// IConnection 连接mod层接口
|
|
// IMessage 消息mod接口
|
|
// IDataPack 消息拆解接口
|
|
// IMsgHandler 消息处理及协程池接口
|
|
//
|
|
// 当前文件描述:
|
|
// @Title imsghandler.go
|
|
// @Description 提供worker启动、处理消息业务调用等接口
|
|
// @Author Aceld - Thu Mar 11 10:32:29 CST 2019
|
|
package ziface
|
|
|
|
/*
|
|
消息管理抽象层
|
|
*/
|
|
type IMsgHandle interface {
|
|
DoMsgHandler(request IRequest) //马上以非阻塞方式处理消息
|
|
AddRouter(msgID uint32, router IRouter) //为消息添加具体的处理逻辑
|
|
StartWorkerPool() //启动worker工作池
|
|
SendMsgToTaskQueue(request IRequest) //将消息交给TaskQueue,由worker进行处理
|
|
}
|