You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-zero/core/syncx/donechan.go

29 lines
396 B
Go

package syncx
import (
"sync"
"github.com/tal-tech/go-zero/core/lang"
)
type DoneChan struct {
done chan lang.PlaceholderType
once sync.Once
}
func NewDoneChan() *DoneChan {
return &DoneChan{
done: make(chan lang.PlaceholderType),
}
}
func (dc *DoneChan) Close() {
dc.once.Do(func() {
close(dc.done)
})
}
func (dc *DoneChan) Done() chan lang.PlaceholderType {
return dc.done
}