All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jctools.counters.FixedSizeStripedLongCounterV6 Maven / Gradle / Ivy

There is a newer version: 1.52.1
Show newest version
package org.jctools.counters;

import static org.jctools.util.UnsafeAccess.UNSAFE;

/**
 * Lock-free implementation of striped counter using
 * CAS primitives.
 *
 * @author Tolstopyatov Vsevolod
 */
class FixedSizeStripedLongCounterV6 extends FixedSizeStripedLongCounter {

    public FixedSizeStripedLongCounterV6(int stripesCount) {
        super(stripesCount);
    }

    @Override
    protected void inc(long[] cells, long offset, long delta) {
        long v;
        do {
            v = UNSAFE.getLongVolatile(cells, offset);
        } while (!UNSAFE.compareAndSwapLong(cells, offset, v, v + delta));
    }

    @Override
    protected long getAndReset(long[] cells, long offset) {
        long v;
        do {
            v = UNSAFE.getLongVolatile(cells, offset);
        } while (!UNSAFE.compareAndSwapLong(cells, offset, v, 0L));

        return v;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy