关闭服务时,书写重复代码
Abierto
- Lenguaje dominante
- Go
- Estrellas
- 7.8k
- Forks
- 1.3k
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
```ruby
func (s *Server) Stop() {
zlog.Ins().InfoF("[STOP] Zinx server , name %s", s.Name)
// Clear other connection information or other information that needs to be cleaned up
// (将其他需要清理的连接信息或者其他信息 也要一并停止或者清理)
s.ConnMgr.ClearConn()
s.exitChan <- struct{}{}
close(s.exitChan)
}
```
其实只需要close(s.exitChan),不需要在投递一个struct{}{},重复书写代码
Guía de contribución
No hay ninguna guía de contribución indexada para este repositorio
Evaluación
Este issue todavía no se ha evaluado.