mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 01:30:25 +08:00
29 lines
396 B
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
|
|
}
|