Skip to content

Instantly share code, notes, and snippets.

@stepancheg
Created March 7, 2016 02:38
Show Gist options
  • Save stepancheg/95ae74d3a24199e7578f to your computer and use it in GitHub Desktop.
Save stepancheg/95ae74d3a24199e7578f to your computer and use it in GitHub Desktop.
public final boolean getAndSet(boolean newValue) {
boolean prev;
do {
prev = get();
} while (!compareAndSet(prev, newValue));
return prev;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment