OnJava8-Examples/concurrency/AtomicEvenSupplier.java
2015-11-15 15:51:35 -08:00

21 lines
662 B
Java

// concurrency/AtomicEvenSupplier.java
// ©2016 MindView LLC: see Copyright.txt
// We make no guarantees that this code is fit for any purpose.
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
// Atomic classes are occasionally useful in regular code.
// {TimeOutDuringTesting}
import java.util.concurrent.atomic.*;
public class AtomicEvenSupplier extends IntSupplier {
private AtomicInteger currentEvenValue =
new AtomicInteger(0);
@Override
public int next() {
return currentEvenValue.addAndGet(2);
}
public static void main(String[] args) {
EvenChecker.test(new AtomicEvenSupplier());
}
}
/* Output: (None) */