GolangNote

Golang笔记

Golang 给运行中的goroutine 发送终止信号

Permalink

goroutine 运行机制是不能外部终止,只能通过 channel 来与它通信,通过 channel 给goroutine 发送终止信号

下面用一个简单的例子说明上面的问题

Go: 给运行中的goroutine 发送终止信号
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package main

import (
    "fmt"
    "time"
)

func main() {
    quit := make(chan struct{})
    go func() {
        for {
            select {
            case <-quit:
                fmt.Println("here 3")
                return
            default:
                // Do other stuff
                fmt.Println("here 4")
                time.Sleep(10 * time.Second)
                fmt.Println("here 5")
            }
        }
    }()

    // Do stuff
    fmt.Println("here 1")

    time.Sleep(2 * time.Second)
    fmt.Println("here 6")
    // Quit goroutine
    quit <- struct{}{}
    fmt.Println("here 2")
}

输出:

plaintext: 给运行中的goroutine 发送终止信号输出
1
2
3
4
5
6
here 1
here 4
here 6
here 5
here 3
here 2

这种方式终止只能等到 goroutine 里的任务完成。

本文网址: https://golangnote.com/topic/219.html 转摘请注明来源

Related articles

Golang实现简单的Socks5代理

Socks5 代理较 `http/https` 代理有较好的性能,下面是借鉴某个著名开源软件的 local 实现的简单代理。...

golang Selenium WebDriver 使用记录

Selenium WebDriver 直接通过浏览器自动化的本地接口来调用浏览器,以达到模拟浏览器行为的操作,如点击、选择、鼠标移动等。下面是记录个人使用golang 驱动的记录。...

Write a Comment to "Golang 给运行中的goroutine 发送终止信号"

Submit Comment Login
Based on Golang + fastHTTP + sdb | go1.22.3 Processed in 0ms