Perform an ordered write of this sequence. The intent is a Store/Store barrier between this write and any previous store. @param value The new value for the sequence.
(final long value)
| 98 | * @param value The new value for the sequence. |
| 99 | */ |
| 100 | public void set(final long value) |
| 101 | { |
| 102 | VarHandle.releaseFence(); |
| 103 | this.value = value; |
| 104 | } |
| 105 | |
| 106 | /** |
| 107 | * Performs a volatile write of this sequence. The intent is |
no outgoing calls