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.

12 lines
370 B

  1. package ziface
  2. /*
  3. 连接管理抽象层
  4. */
  5. type IConnManager interface {
  6. Add(conn IConnection) //添加链接
  7. Remove(conn IConnection) //删除连接
  8. Get(connID uint32) (IConnection, error) //利用ConnID获取链接
  9. Len() int //获取当前连接
  10. ClearConn() //删除并停止所有链接
  11. }