2017-01-13 14:28:08 -08:00
|
|
|
// concurrent/IDChecker.java
|
2021-01-31 15:42:31 -07:00
|
|
|
// (c)2021 MindView LLC: see Copyright.txt
|
2017-01-13 14:28:08 -08:00
|
|
|
// We make no guarantees that this code is fit for any purpose.
|
|
|
|
// Visit http://OnJava8.com for more book information.
|
|
|
|
import java.util.*;
|
|
|
|
import java.util.function.*;
|
|
|
|
import java.util.stream.*;
|
|
|
|
import java.util.concurrent.*;
|
|
|
|
import com.google.common.collect.Sets;
|
|
|
|
|
|
|
|
public class IDChecker {
|
2017-05-01 14:33:10 -06:00
|
|
|
public static final int SIZE = 100_000;
|
2017-01-13 14:28:08 -08:00
|
|
|
static class MakeObjects
|
|
|
|
implements Supplier<List<Integer>> {
|
|
|
|
private Supplier<HasID> gen;
|
2017-05-01 14:33:10 -06:00
|
|
|
MakeObjects(Supplier<HasID> gen) {
|
2017-01-13 14:28:08 -08:00
|
|
|
this.gen = gen;
|
|
|
|
}
|
2021-01-31 15:42:31 -07:00
|
|
|
@Override public List<Integer> get() {
|
2017-01-13 14:28:08 -08:00
|
|
|
return
|
|
|
|
Stream.generate(gen)
|
|
|
|
.limit(SIZE)
|
|
|
|
.map(HasID::getID)
|
|
|
|
.collect(Collectors.toList());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public static void test(Supplier<HasID> gen) {
|
|
|
|
CompletableFuture<List<Integer>>
|
|
|
|
groupA = CompletableFuture
|
|
|
|
.supplyAsync(new MakeObjects(gen)),
|
|
|
|
groupB = CompletableFuture
|
|
|
|
.supplyAsync(new MakeObjects(gen));
|
|
|
|
groupA.thenAcceptBoth(groupB, (a, b) -> {
|
|
|
|
System.out.println(
|
|
|
|
Sets.intersection(
|
|
|
|
Sets.newHashSet(a),
|
|
|
|
Sets.newHashSet(b)).size());
|
|
|
|
}).join();
|
|
|
|
}
|
|
|
|
}
|