mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 01:30:25 +08:00
29 lines
436 B
Go
29 lines
436 B
Go
|
package threading
|
||
|
|
||
|
import (
|
||
|
"zero/core/lang"
|
||
|
"zero/core/rescue"
|
||
|
)
|
||
|
|
||
|
type TaskRunner struct {
|
||
|
limitChan chan lang.PlaceholderType
|
||
|
}
|
||
|
|
||
|
func NewTaskRunner(concurrency int) *TaskRunner {
|
||
|
return &TaskRunner{
|
||
|
limitChan: make(chan lang.PlaceholderType, concurrency),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (rp *TaskRunner) Schedule(task func()) {
|
||
|
rp.limitChan <- lang.Placeholder
|
||
|
|
||
|
go func() {
|
||
|
defer rescue.Recover(func() {
|
||
|
<-rp.limitChan
|
||
|
})
|
||
|
|
||
|
task()
|
||
|
}()
|
||
|
}
|