mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-04 13:07:39 +03:00
24 lines
316 B
Go
24 lines
316 B
Go
package utils
|
|
|
|
import (
|
|
"sync/atomic"
|
|
"time"
|
|
)
|
|
|
|
type AtomicTime struct {
|
|
v atomic.Value
|
|
}
|
|
|
|
func NewAtomicTime(t time.Time) *AtomicTime {
|
|
a := &AtomicTime{}
|
|
a.Set(t)
|
|
return a
|
|
}
|
|
|
|
func (t *AtomicTime) Set(new time.Time) {
|
|
t.v.Store(new)
|
|
}
|
|
|
|
func (t *AtomicTime) Get() time.Time {
|
|
return t.v.Load().(time.Time)
|
|
}
|