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.
11 lines
365 B
11 lines
365 B
package ziface
|
|
|
|
/*
|
|
消息管理抽象层
|
|
*/
|
|
type IMsgHandle interface{
|
|
DoMsgHandler(request IRequest) //马上以非阻塞方式处理消息
|
|
AddRouter(msgId uint32, router IRouter) //为消息添加具体的处理逻辑
|
|
StartWorkerPool() //启动worker工作池
|
|
SendMsgToTaskQueue(request IRequest) //将消息交给TaskQueue,由worker进行处理
|
|
}
|