douzhang8144 2017-12-25 09:25
浏览 31
已采纳

选择忽略的慢速情况?

I'm using such a select on multiple cases:

for {
    select {
    case data:= <- highFreqChan:
        // do something:
    case <- time.After(time.Second * 5):
        // send some heartbeat like data...
    }
}

I find that, if highFreqChan got huge data, the heartbeat case will not enter, and when stop sending data to highFreqChan, the heartbeat case alive again, how to make it always enter the heartbeat case while the highFreqChan still working?

  • 写回答

1条回答 默认 最新

  • dtnqbre7980007 2017-12-25 09:32
    关注

    You're running time.After as part of the select condition, which means it's evaluated at the time the select is reached... which means that it will expire 5 seconds after the select is reached. So you will only enter that case if highFreqChan doesn't have any data for 5 seconds straight.

    If you want to do something every 5 seconds, use a time.Ticker instead, like so:

    heartbeat := time.NewTicker(5 * time.Second)
    defer heartbeat.Stop()
    for {
        select {
        case data:= <- highFreqChan:
            // do something:
        case <- heartbeat.C:
            // send some heartbeat like data...
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 想问一下树莓派接上显示屏后出现如图所示画面,是什么问题导致的
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line
  • ¥500 火焰左右视图、视差(基于双目相机)
  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号