blob: bc47f36559103017035c34104999db677870a3e9 [file] [log] [blame]
package disruptor
func (this *Cursor) Store(value int64) {
this.value = value
}
func (this *Cursor) Load() int64 {
return this.value
}
func (this *Cursor) LoadBarrier(current int64) int64 {
return this.value
}