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.
25 lines
926 B
25 lines
926 B
// Package ziface 主要提供zinx全部抽象层接口定义.
|
|
// 包括:
|
|
// IServer 服务mod接口
|
|
// IRouter 路由mod接口
|
|
// IConnection 连接mod层接口
|
|
// IMessage 消息mod接口
|
|
// IDataPack 消息拆解接口
|
|
// IMsgHandler 消息处理及协程池接口
|
|
//
|
|
// 当前文件描述:
|
|
// @Title iconnmanager.go
|
|
// @Description 连接管理相关,包括添加、删除、通过一个连接ID获得连接对象,当前连接数量、清空全部连接等方法
|
|
// @Author Aceld - Thu Mar 11 10:32:29 CST 2019
|
|
package ziface
|
|
|
|
/*
|
|
连接管理抽象层
|
|
*/
|
|
type IConnManager interface {
|
|
Add(conn IConnection) //添加链接
|
|
Remove(conn IConnection) //删除连接
|
|
Get(connID uint32) (IConnection, error) //利用ConnID获取链接
|
|
Len() int //获取当前连接
|
|
ClearConn() //删除并停止所有链接
|
|
}
|