dpw5865 2015-10-16 04:41
浏览 170
已采纳

Websocket在Echo Framework中向所有客户端发送消息

I believe that this question is almost the same with this.

But I use websocket in Echo framework instead of Gorilla. So I think the approach will be different.

Echo does provide the example. But it only shows how to connect with single client. When there are more than one client, the other clients don't receive message from server.

How do I make the server broadcasts message to all connected clients?

The accepted answer from referred link says that I have to use connection pool to broadcast messages to all connections. How can I do this in Echo framework?

  • 写回答

1条回答 默认 最新

  • douyingbei1458 2015-10-16 06:26
    关注

    You indeed need to follow the same principle of connection pool.

    Here is the Echo example, with a very basic implementation of a pool:

    package main
    
    import (
        "fmt"
    
        "sync"
    
        "github.com/labstack/echo"
        mw "github.com/labstack/echo/middleware"
        "golang.org/x/net/websocket"
    )
    
    var connectionPool = struct {
        sync.RWMutex
        connections map[*websocket.Conn]struct{}
    }{
        connections: make(map[*websocket.Conn]struct{}),
    }
    
    func main() {
        e := echo.New()
    
        e.Use(mw.Logger())
        e.Use(mw.Recover())
    
        e.Static("/", "public")
        e.WebSocket("/ws", func(c *echo.Context) (err error) {
            ws := c.Socket()
    
            connectionPool.Lock()
            connectionPool.connections[ws] = struct{}{}
    
            defer func(connection *websocket.Conn){
                connectionPool.Lock()
                delete(connectionPool.connections, connection)
                connectionPool.Unlock()
            }(ws)
    
            connectionPool.Unlock()
    
            msg := ""
    
            for {
                if err = websocket.Message.Receive(ws, &msg); err != nil {
                    return err
                }
                err = sendMessageToAllPool(msg)
                if err != nil {
                    return err
                }
                fmt.Println(msg)
            }
            return err
        })
    
        e.Run(":1323")
    }
    
    func sendMessageToAllPool(message string) error {
        connectionPool.RLock()
        defer connectionPool.RUnlock()
        for connection := range connectionPool.connections {
            if err := websocket.Message.Send(connection, message); err != nil {
                return err
            }
        }
        return nil
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 HFSS 中的 H 场图与 MATLAB 中绘制的 B1 场 部分对应不上
  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?