github.com/go-eden/common@v0.1.15-0.20210617133546-059099253264/esync/sync_atomic_uint64.go (about) 1 package esync 2 3 import ( 4 "fmt" 5 "sync/atomic" 6 ) 7 8 type AtomicUint64 struct { 9 value uint64 10 } 11 12 func (t *AtomicUint64) Inc() uint64 { 13 return t.Add(1) 14 } 15 16 func (t *AtomicUint64) Add(v uint64) uint64 { 17 return atomic.AddUint64(&t.value, v) 18 } 19 20 func (t *AtomicUint64) Set(v uint64) { 21 atomic.StoreUint64(&t.value, v) 22 } 23 24 func (t *AtomicUint64) Get() uint64 { 25 return atomic.LoadUint64(&t.value) 26 } 27 28 func (t *AtomicUint64) Swap(v uint64) uint64 { 29 return atomic.SwapUint64(&t.value, v) 30 } 31 32 func (t *AtomicUint64) String() string { 33 return fmt.Sprint(t.Get()) 34 }