209210211212213214215216217218219
for (int i = 0; i < 100; i++) { results.add(executorService.submit(new Callable<Void>() { @Override public Void call() throws Exception { for (int j = 0; j < 10000; j++) { assertTrue(tokens.add(new PutTokenImpl())); } return null; } })); }
206207208209210211212213214215216
208209210211212213214215216217218