blob: 9b5e4c851974f6ff56786d69a2d9fe07233f368b [file] [log] [blame]
package disruptor
func (this *Sequence) Store(value int64) {
this.value = value
}
func (this *Sequence) Load() int64 {
return this.value
}