使用管道進行通訊時,為防止管道接收端一直阻塞, Golang 提供兩種逾時處理策略:使用Context 設定時間限製或使用select 監聽多個管道,當管道接收端沒有收到資料時,這兩個策略都會超時。
Golang 函數通訊管道逾時處理策略
管道是 Golang 中進行進程間通訊的一種常見方式。但是,當管道接收端收不到資料時,它會一直阻塞。為了防止這種阻塞,我們可以使用具有超時的管道接收操作。
逾時處理策略
有兩個主要的逾時處理策略:
實戰案例
下面是使用Context 逾時處理策略的管道接收操作範例:
package main import ( "context" "fmt" "log" "sync/atomic" "time" ) func main() { // 创建一个管道 ch := make(chan int) ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second) defer cancel() // 并发地将数据发送到管道 go func() { for i := 0; i < 10; i++ { ch <- i } }() // 使用 Context 超时接收数据 go func() { var total uint64 for { select { case <-ctx.Done(): fmt.Println("Timeout reached!") return case value := <-ch: total += uint64(value) } } }() log.Printf("Total: %d", total) }
使用select 逾時處理策略的管道接收操作範例:
package main import ( "fmt" "log" "sync/atomic" "time" ) func main() { // 创建一个管道 ch := make(chan int) // 创建一个 select 语句来监听管道和超时 var total uint64 go func() { for { select { case value := <-ch: total += uint64(value) case <-time.After(5 * time.Second): fmt.Println("Timeout reached!") return } } }() // 并发地将数据发送到管道 go func() { for i := 0; i < 10; i++ { ch <- i } }() log.Printf("Total: %d", total) }
以上是golang函數通訊管道超時處理策略的詳細內容。更多資訊請關注PHP中文網其他相關文章!