Skip to content

Commit

Permalink
Merge branch '#issue35-refactor-part(1.2-1.4-1.6-1.8)' into 'dev'
Browse files Browse the repository at this point in the history
#issue35 refactor part(1.2 1.4 1.6 1.8)

See merge request zalopay-oss/advanced-go-book!56
  • Loading branch information
phamtai97 committed Jul 27, 2019
2 parents ae19f09 + 0e8d94b commit c742592
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ch1-basic/ch1-06-common-concurrency-mode.md
Original file line number Diff line number Diff line change
Expand Up @@ -637,6 +637,8 @@ func worker(ctx context.Context, wg *sync.WaitGroup) error {
}

func main() {
// nhận vào context parent (Background) và trả về context child (ctx) và hàm cancel
// deadline 10 secs
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)

var wg sync.WaitGroup
Expand All @@ -648,6 +650,10 @@ func main() {
}

time.Sleep(time.Second)

// mặc dù ctx sẽ expire theo timeout đã set trước đó
// ta vẫn gọi cancel để đóng context child và các children của nó
// để tránh giữ chúng tồn tại không cần thiết
cancel()

// sử dụng waitGroup thay cho done channel
Expand Down

0 comments on commit c742592

Please sign in to comment.