jdk/src/share/classes/java/util/concurrent/atomic/AtomicLong.java
author dl
Thu, 07 Apr 2011 15:06:32 +0100
changeset 9242 ef138d47df58
parent 5506 202f599c92aa
child 10067 1263ecd22db6
permissions -rw-r--r--
7034657: Update Creative Commons license URL in legal notices Reviewed-by: chegar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     6
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     8
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    20
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 * This file is available under and governed by the GNU General Public
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * License version 2 only, as published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * However, the following notice accompanied the original version of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * file:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * Written by Doug Lea with assistance from members of JCP JSR-166
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * Expert Group and released to the public domain, as explained at
9242
ef138d47df58 7034657: Update Creative Commons license URL in legal notices
dl
parents: 5506
diff changeset
    33
 * http://creativecommons.org/publicdomain/zero/1.0/
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
package java.util.concurrent.atomic;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import sun.misc.Unsafe;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * A {@code long} value that may be updated atomically.  See the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * {@link java.util.concurrent.atomic} package specification for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * description of the properties of atomic variables. An
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * {@code AtomicLong} is used in applications such as atomically
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * incremented sequence numbers, and cannot be used as a replacement
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * for a {@link java.lang.Long}. However, this class does extend
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * {@code Number} to allow uniform access by tools and utilities that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * deal with numerically-based classes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * @author Doug Lea
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
public class AtomicLong extends Number implements java.io.Serializable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    private static final long serialVersionUID = 1927816293512124184L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    // setup to use Unsafe.compareAndSwapLong for updates
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    private static final Unsafe unsafe = Unsafe.getUnsafe();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    private static final long valueOffset;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
     * Records whether the underlying JVM supports lockless
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     * compareAndSwap for longs. While the Unsafe.compareAndSwapLong
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     * method works in either case, some constructions should be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     * handled at Java level to avoid locking user-visible locks.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    static final boolean VM_SUPPORTS_LONG_CAS = VMSupportsCS8();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * Returns whether underlying JVM supports lockless CompareAndSet
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     * for longs. Called only once and cached in VM_SUPPORTS_LONG_CAS.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    private static native boolean VMSupportsCS8();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
      try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        valueOffset = unsafe.objectFieldOffset
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
            (AtomicLong.class.getDeclaredField("value"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
      } catch (Exception ex) { throw new Error(ex); }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    private volatile long value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * Creates a new AtomicLong with the given initial value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * @param initialValue the initial value
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    public AtomicLong(long initialValue) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        value = initialValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     * Creates a new AtomicLong with initial value {@code 0}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    public AtomicLong() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * Gets the current value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * @return the current value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    public final long get() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        return value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * Sets to the given value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * @param newValue the new value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    public final void set(long newValue) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        value = newValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * Eventually sets to the given value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * @param newValue the new value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    public final void lazySet(long newValue) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        unsafe.putOrderedLong(this, valueOffset, newValue);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * Atomically sets to the given value and returns the old value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * @param newValue the new value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * @return the previous value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    public final long getAndSet(long newValue) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        while (true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
            long current = get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
            if (compareAndSet(current, newValue))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
                return current;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * Atomically sets the value to the given updated value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * if the current value {@code ==} the expected value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * @param expect the expected value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * @param update the new value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * @return true if successful. False return indicates that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * the actual value was not equal to the expected value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    public final boolean compareAndSet(long expect, long update) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        return unsafe.compareAndSwapLong(this, valueOffset, expect, update);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * Atomically sets the value to the given updated value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * if the current value {@code ==} the expected value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * <p>May <a href="package-summary.html#Spurious">fail spuriously</a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * and does not provide ordering guarantees, so is only rarely an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * appropriate alternative to {@code compareAndSet}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * @param expect the expected value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * @param update the new value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     * @return true if successful.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    public final boolean weakCompareAndSet(long expect, long update) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        return unsafe.compareAndSwapLong(this, valueOffset, expect, update);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * Atomically increments by one the current value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * @return the previous value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    public final long getAndIncrement() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        while (true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
            long current = get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
            long next = current + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
            if (compareAndSet(current, next))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
                return current;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     * Atomically decrements by one the current value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * @return the previous value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
    public final long getAndDecrement() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        while (true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
            long current = get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
            long next = current - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
            if (compareAndSet(current, next))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
                return current;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     * Atomically adds the given value to the current value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     * @param delta the value to add
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * @return the previous value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    public final long getAndAdd(long delta) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        while (true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
            long current = get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
            long next = current + delta;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
            if (compareAndSet(current, next))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
                return current;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * Atomically increments by one the current value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * @return the updated value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
    public final long incrementAndGet() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
        for (;;) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
            long current = get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
            long next = current + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
            if (compareAndSet(current, next))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
                return next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     * Atomically decrements by one the current value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     * @return the updated value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
    public final long decrementAndGet() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        for (;;) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
            long current = get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
            long next = current - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
            if (compareAndSet(current, next))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
                return next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
     * Atomically adds the given value to the current value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     * @param delta the value to add
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     * @return the updated value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
    public final long addAndGet(long delta) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
        for (;;) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
            long current = get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
            long next = current + delta;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
            if (compareAndSet(current, next))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
                return next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     * Returns the String representation of the current value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     * @return the String representation of the current value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
        return Long.toString(get());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
    public int intValue() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
        return (int)get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
    public long longValue() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
        return get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
    public float floatValue() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        return (float)get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
    public double doubleValue() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
        return (double)get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
}