OnJava8-Examples/lowlevel/EvenSupplier.java
2016-12-30 17:23:13 -08:00

27 lines
657 B
Java

// lowlevel/EvenSupplier.java
// (c)2017 MindView LLC: see Copyright.txt
// We make no guarantees that this code is fit for any purpose.
// Visit http://OnJava8.com for more book information.
// When threads collide
import onjava.TimedAbort;
public class EvenSupplier extends IntSupplier {
private int currentEvenValue = 0;
@Override
public int next() {
++currentEvenValue; // Danger point here!
++currentEvenValue;
return currentEvenValue;
}
public static void main(String[] args) {
new TimedAbort(4);
EvenChecker.test(new EvenSupplier());
}
}
/* Output:
Press Control-C to exit
193 not even!
191 not even!
TimedAbort 4
*/