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