OnJava8-Examples/concurrency/SynchronizedEvenGenerator.java

20 lines
549 B
Java
Raw Normal View History

2015-04-20 15:36:01 -07:00
//: concurrency/SynchronizedEvenGenerator.java
2015-05-29 14:18:51 -07:00
// <20>2015 MindView LLC: see Copyright.txt
2015-04-20 15:36:01 -07:00
// Simplifying mutexes with the synchronized keyword.
2015-05-05 11:20:13 -07:00
// {TimeOutDuringTesting}
2015-04-20 15:36:01 -07:00
public class
SynchronizedEvenGenerator extends IntGenerator {
private int currentEvenValue = 0;
2015-05-05 11:20:13 -07:00
@Override
2015-04-20 15:36:01 -07:00
public synchronized int next() {
++currentEvenValue;
Thread.yield(); // Cause failure faster
++currentEvenValue;
return currentEvenValue;
}
public static void main(String[] args) {
EvenChecker.test(new SynchronizedEvenGenerator());
}
} ///:~