mirror of
https://github.com/diamondburned/arikawa.git
synced 2024-11-01 04:24:19 +00:00
diamondburned
6ef093eb98
This commit refactored several structures from package discord to be in package gateway. Those structures are mostly presence ones, which per official documentation has a lot more to do with the Gateway API than the REST API or anything else. This commit also renamed several global variables to have a more consistent and obvious name. As of v8, the user API has had a lot of minor and some major changes, especially regarding its Ready event API. The most significant change is the addition of the ReadySupplemental event as well as several changes to the Ready field itself. All of these changes above are breaking, and they have already broken the state package. These breaking changes will be addressed in other packages by the next commit.
15 lines
274 B
Go
15 lines
274 B
Go
package moreatomic
|
|
|
|
import "sync/atomic"
|
|
|
|
type Int64 int64
|
|
|
|
func NewInt64(v int64) *Int64 {
|
|
i := new(Int64)
|
|
*i = Int64(v)
|
|
return i
|
|
}
|
|
|
|
func (i *Int64) Set(v int64) { atomic.StoreInt64((*int64)(i), v) }
|
|
func (i *Int64) Get() int64 { return atomic.LoadInt64((*int64)(i)) }
|