mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 01:30:25 +08:00
19 lines
429 B
Go
19 lines
429 B
Go
package syncx
|
|
|
|
import "sync/atomic"
|
|
|
|
// An OnceGuard is used to make sure a resource can be taken once.
|
|
type OnceGuard struct {
|
|
done uint32
|
|
}
|
|
|
|
// Taken checks if the resource is taken.
|
|
func (og *OnceGuard) Taken() bool {
|
|
return atomic.LoadUint32(&og.done) == 1
|
|
}
|
|
|
|
// Take takes the resource, returns true on success, false for otherwise.
|
|
func (og *OnceGuard) Take() bool {
|
|
return atomic.CompareAndSwapUint32(&og.done, 0, 1)
|
|
}
|