Golang中WaitGroup、Context、goroutine定時器及逾時學習筆記

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

原文串連:http://targetliu.com/2017/5/2...
好久沒有發過文章了 - -||,今天發一篇 golanggoroutine 相關的學習筆記吧,以樣本為主。

WaitGroup

WaitGroupsync 包中,用於阻塞主線程執行直到添加的 goroutine 全部執行完畢。

Context

Context 是在 Go1.7 中移入標準庫的。

Context 包不僅實現了在程式單元之間共用狀態變數的方法,同時能通過簡單的方法,使我們在被調用程式單元的外部,通過設定ctx變數值,將到期或撤銷這些訊號傳遞給被調用的程式單元。

goroutine的定時器及逾時

這是兩個有趣又實用的功能,在標準庫 time 包裡提供。

樣本

源碼

<!--more-->

package mainimport (    "context"    "fmt"    "sync"    "time")func main() {    ch := make(chan int)    //定義一個WaitGroup,阻塞主線程執行    var wg sync.WaitGroup    //添加一個goroutine等待    wg.Add(1)    //goroutine逾時    go func() {        //執行完成,減少一個goroutine等待        defer wg.Done()        for {            select {            case i := <-ch:                fmt.Println(i)            //goroutine內部3秒逾時            case <-time.After(3 * time.Second):                fmt.Println("goroutine1 timed out")                return            }        }    }()    ch <- 1    //新增一個1秒執行一次的計時器    ticker := time.NewTicker(1 * time.Second)    defer ticker.Stop()    //新增一個10秒逾時的上下文    background := context.Background()    ctx, _ := context.WithTimeout(background, 10*time.Second)    //添加一個goroutine等待    wg.Add(1)    go func(ctx context.Context) {        //執行完成,減少一個goroutine等待        defer wg.Done()        for {            select {            //每秒一次            case <-ticker.C:                fmt.Println("tick")            //內部逾時,不會被執行            case <-time.After(5 * time.Second):                fmt.Println("goroutine2 timed out")            //上下文傳遞逾時資訊,結束goroutine            case <-ctx.Done():                fmt.Println("goroutine2 done")                return            }        }    }(ctx)    //等待所有goroutine執行完成    wg.Wait()}

執行結果

1tickticktickgoroutine1 timed outtickticktickticktickticktickgoroutine2 done
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.