Golang之wait.Until 簡單測試案例

來源:互聯網
上載者:User

測試目的,驗證wait.Until的用法

//測試wait.Until() 的用途package mainimport (    "fmt"    "k8s.io/apimachinery/pkg/util/wait"    "time")type stop struct {}func main() {    stopCh := make(chan struct{})    //初始化一個計數器    i := 0    go wait.Until(func() {        fmt.Printf("----%d----\n", i)        i++    }, time.Second, stopCh)    time.Sleep(time.Second * 10)    stopCh <- stop{}    // 下面的形式,也是可以的    //stopCh < struct {    //}{}    fmt.Println("---上面的go routines 結束----")    // 主程式,再休息3秒鐘,再結束    time.Sleep(time.Second * 3)    fmt.Println("---主程式結束----")}

總結:

就是啟動一個協程,每隔一定的時間,就去運行聲明的匿名函數,直到接收到結束訊號 就關閉這個協程
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.