dongqianwei6664 2015-08-12 19:00
浏览 41
已采纳

如何在没有比赛的情况下延长股票行情的持续时间?

I'm trying to implement a keepAlive mechanism. The issue is that I don't know how to replace the keep alive ticker ( conn.keepAlive) without a race because keepAlive() method always reads from the ticker.

//errors not handled for brevity
const interval = 10 * time.Second

type conn struct {
    keepAlive time.Ticker
    conn      net.Conn
    mux       sync.Mutex
}

// replace replaces the underlying connection
func (cn conn) replace(newcn net.Conn) {
    cn.mux.Lock()
    cn.conn = newcn
    // reset the ticker
    cn.keepAlive.Stop
    cn.keepAlive = time.NewTicker(interval)
    cn.mux.Unlock()
}

func (cn conn) keepAlive() {
    for {
        <-cn.keepAlive.C
        cn.mux.Lock()
        cn.conn.Write([]byte("ping"))
        var msg []byte
        cn.conn.Read(msg)
        if string(msg) != "pong" {
            // do some mean stuff
        }
        cn.keepAlive = time.NewTicker(interval)
        cn.mux.Unlock()
    }
}
  • 写回答

2条回答 默认 最新

  • duanrang3357 2015-08-12 20:44
    关注

    One way to implement this much more succinctly, is by using a channel as the synchronization mechanism, instead of the mutex:

    type conn struct {
        sync.Mutex
        conn        net.Conn
        replaceConn chan net.Conn
    }
    
    // replace replaces the underlying connection
    func (cn *conn) replace(newcn net.Conn) {
        cn.replaceConn <- newcn
    }
    
    func (cn *conn) keepAlive() {
        t := time.NewTicker(interval)
        msg := make([]byte, 10)
    
        for {
            select {
            case <-t.C:
            case newConn := <-cn.replaceConn:
                cn.Lock()
                cn.conn = newConn
                cn.Unlock()
                continue
            }
    
            cn.Lock()
            _ = msg
            // do keepalive
            cn.Unlock()
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 有没有帮写代码做实验仿真的
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog
  • ¥15 Excel发现不可读取的内容
  • ¥15 关于#stm32#的问题:CANOpen的PDO同步传输问题
  • ¥20 yolov5自定义Prune报错,如何解决?