18 lines
534 B
Java
18 lines
534 B
Java
|
//: concurrency/AtomicEvenGenerator.java
|
|||
|
// <20>2015 MindView LLC: see Copyright.txt
|
|||
|
// Atomic classes are occasionally useful in regular code.
|
|||
|
// {TimeOutDuringTesting}
|
|||
|
import java.util.concurrent.atomic.*;
|
|||
|
|
|||
|
public class AtomicEvenGenerator extends IntGenerator {
|
|||
|
private AtomicInteger currentEvenValue =
|
|||
|
new AtomicInteger(0);
|
|||
|
@Override
|
|||
|
public int next() {
|
|||
|
return currentEvenValue.addAndGet(2);
|
|||
|
}
|
|||
|
public static void main(String[] args) {
|
|||
|
EvenChecker.test(new AtomicEvenGenerator());
|
|||
|
}
|
|||
|
} /* Output: (None) *///:~
|