Sign in
fuchsia
/
third_party
/
github.com
/
smartystreets
/
go-disruptor
/
bcdcd1f0b3a67be2617d9eb49edc7733883e13a7
/
.
/
cursor_amd64.go
blob: dd021a34a95482136993fb3d829599802e81e197 [
file
] [
log
] [
blame
]
package disruptor
func (this *Cursor) Store(sequence int64) {
this.sequence = sequence
}
func (this *Cursor) Load() int64 {
return this.sequence
}
func (this *Cursor) Read(noop int64) int64 {
return this.sequence
}