You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
func(s *Server)Stop(){zlog.Ins().InfoF("[STOP] Zinx server , name %s",s.Name)//Clearotherconnectioninformationorotherinformationthatneedstobecleanedup//(将其他需要清理的连接信息或者其他信息也要一并停止或者清理)s.ConnMgr.ClearConn()s.exitChan <- struct{}{}close(s.exitChan)}
其实只需要close(s.exitChan),不需要在投递一个struct{}{},重复书写代码
The text was updated successfully, but these errors were encountered:
其实只需要close(s.exitChan),不需要在投递一个struct{}{},重复书写代码
The text was updated successfully, but these errors were encountered: