首页 > 后端开发 > Golang > 如何优雅地关闭 Go TCP 服务器并中断 `(*TCPListener) Accept` Goroutine?

如何优雅地关闭 Go TCP 服务器并中断 `(*TCPListener) Accept` Goroutine?

Patricia Arquette
发布: 2024-11-03 07:27:02
原创
809 人浏览过

How to Gracefully Shut Down a Go TCP Server and Interrupt the `(*TCPListener) Accept` Goroutine?

中断 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中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板