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

delight.concurrency.wrappers.SimpleAtomicInteger Maven / Gradle / Ivy

The newest version!
package delight.concurrency.wrappers;

public interface SimpleAtomicInteger {

    public int incrementAndGet();

    public int decrementAndGet();

    public int get();

    public int getAndSet(int newValue);

    public void set(int newValue);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy