中断 Go 例程执行(*TCPListener)Accept
在 Go 中创建 TCP 服务器时,您可能会遇到优雅的挑战关闭服务器并中断 goroutine 处理 func (*TCPListener) Accept。
在 Go 中, func (*TCPListener) Accept 会阻塞执行,直到收到连接。要中断这个goroutine,你应该:
关闭net.Listener:
中断Accept goroutine的关键是关闭从net获取的net.Listener。听(...)。通过关闭监听器,您向操作系统发出信号,表明不再接收连接,从而导致 Accept goroutine 退出。
从 Goroutine 返回:
关闭后监听者,确保你的 goroutine 返回。如果 Goroutine 在 Accept 调用之后有代码,它将继续执行,并可能导致意外的行为或错误。
示例代码:
<code class="go">package main import ( "fmt" "net" ) func main() { ln, err := net.Listen("tcp", ":8080") if err != nil { // Handle error } go func() { for { conn, err := ln.Accept() if err != nil { if err == net.ErrClosed { return // Listener was closed } // Handle other errors } // Handle connection conn.Close() } }() fmt.Println("Press enter to stop...") var input string fmt.Scanln(&input) ln.Close() // Close the listener, interrupting the Accept loop }</code>
此代码创建一个TCPListener 在端口 8080 上启动一个 goroutine,以无限循环的方式处理传入连接。当用户按下 Enter 键时,程序将关闭监听器并中断阻塞的 Accept 调用,从而导致 goroutine 返回。
以上是如何优雅地关闭 Go TCP 服务器并中断 `(*TCPListener) Accept` Goroutine?的详细内容。更多信息请关注PHP中文网其他相关文章!