Eventsource golang:如何检测客户端断开连接?

时间:2015-08-20 16:27:30

标签: go server-sent-events

我正在开发基于Twitter主题标签的聊天室,其中包含服务器发送的事件,包https://github.com/antage/eventsource

我有一个关于客户端断开的问题。我运行goroutine向客户端发送消息,但是当客户端断开连接时,goroutine仍在运行。

我不知道如何在服务器端检测到客户端已断开连接。

func (sh StreamHandler) ServeHTTP(resp http.ResponseWriter, req *http.Request) {

    es := eventsource.New(
        &eventsource.Settings{
            Timeout:        2 * time.Second,
            CloseOnTimeout: true,
            IdleTimeout:    2 * time.Second,
            Gzip:           true,
        },
        func(req *http.Request) [][]byte {
            return [][]byte{
                []byte("X-Accel-Buffering: no"),
                []byte("Access-Control-Allow-Origin: *"),
            }
        },
    )

    es.ServeHTTP(resp, req)

    go func() {
        var id int
        for {
            id++
            time.Sleep(1 * time.Second)
            es.SendEventMessage("blabla", "message", strconv.Itoa(id))
        }
    }()

}

3 个答案:

答案 0 :(得分:5)

您可以使用CloseNotifier来告知底层http连接是否已关闭。像:

notify := w.(http.CloseNotifier).CloseNotify()
go func() {
    <-notify
    // connection close, do cleanup, etc.
}()

HTH

答案 1 :(得分:3)

您可以查看ConsumersCount()

    go func() {
        var id int
        for es.ConsumersCount() > 0 {
            id++
            es.SendEventMessage("blabla", "message", strconv.Itoa(id))
            time.Sleep(1 * time.Second)
        }
        fmt.Println("closed")
    }()

有点hacky,但似乎有效。

您可能最好使用不同的软件包或自己动手,这样您就可以更好地控制goroutine的生命周期。您可以在.Write上检测到已关闭的连接(此程序包不会公开)。

如果您想在这里找到TCP中的示例聊天服务器:chat-server。 还有一个视频教程:tutorial

相同的基本模式应适用于SSE。

答案 2 :(得分:0)

截至2018年12月,apparently CloseNotifier is depracated。推荐的解决方案是使用Request上下文。以下对我有用:

done := make(chan bool)
go func() {
        <-req.Context().Done()
        done <- true
}()
<-done