ceph-csi/vendor/github.com/modern-go/concurrent
Madhu Rajanna d5a0606c33 Migrate from dep to go module
Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
2020-03-17 10:44:07 +00:00
..
.gitignore Migrate from dep to go module 2020-03-17 10:44:07 +00:00
.travis.yml Migrate from dep to go module 2020-03-17 10:44:07 +00:00
executor.go added vendors 2018-12-19 15:29:25 +01:00
go_above_19.go added vendors 2018-12-19 15:29:25 +01:00
go_below_19.go added vendors 2018-12-19 15:29:25 +01:00
LICENSE added vendors 2018-12-19 15:29:25 +01:00
log.go added vendors 2018-12-19 15:29:25 +01:00
README.md Migrate from dep to go module 2020-03-17 10:44:07 +00:00
test.sh Migrate from dep to go module 2020-03-17 10:44:07 +00:00
unbounded_executor.go added vendors 2018-12-19 15:29:25 +01:00

concurrent

Sourcegraph GoDoc Build Status codecov rcard License

  • concurrent.Map: backport sync.Map for go below 1.9
  • concurrent.Executor: goroutine with explicit ownership and cancellable

concurrent.Map

because sync.Map is only available in go 1.9, we can use concurrent.Map to make code portable

m := concurrent.NewMap()
m.Store("hello", "world")
elem, found := m.Load("hello")
// elem will be "world"
// found will be true

concurrent.Executor

executor := concurrent.NewUnboundedExecutor()
executor.Go(func(ctx context.Context) {
    everyMillisecond := time.NewTicker(time.Millisecond)
    for {
        select {
        case <-ctx.Done():
            fmt.Println("goroutine exited")
            return
        case <-everyMillisecond.C:
            // do something
        }
    }
})
time.Sleep(time.Second)
executor.StopAndWaitForever()
fmt.Println("executor stopped")

attach goroutine to executor instance, so that we can

  • cancel it by stop the executor with Stop/StopAndWait/StopAndWaitForever
  • handle panic by callback: the default behavior will no longer crash your application