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
}