»
(21)Go语言中的多线程,GoRoutine协程
go语言中的多线程:协程、goroutine
func (c *WebSocketController) ServeWs() {
//启动一个goroutine协程
go serveClientGoRoutine(ws, clientId)
}
func serveClientGoRoutine(ws *websocket.Conn, clientId string) {
}
————www.v-signon.com学习者共勉