Sign in
fuchsia
/
third_party
/
github.com
/
smartystreets
/
go-disruptor
/
032ae8733f36318a7798938519ad74111a574d28
/
.
/
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
}