
delight.concurrency.wrappers.SimpleAtomicBoolean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of delight-concurrency Show documentation
Show all versions of delight-concurrency Show documentation
An abstract and lightweight definition of concurrency fundamentals.
The newest version!
package delight.concurrency.wrappers;
public interface SimpleAtomicBoolean {
public boolean compareAndSet(boolean expect, boolean update);
public boolean get();
public boolean getAndSet(boolean newValue);
public void set(boolean newValue);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy