for (int index = 0; index <= 3; index++) {
final int concurrencyLevel = 20;
// All actors in this group share the same thread pool
final PGroup group = new DefaultPGroup(new DefaultPool(true, concurrencyLevel));
final long t1 = System.currentTimeMillis();
// With each message received counter is decreased by the actors
final int latchCount = ACTORS * MESSAGES;
final CountDownLatch cdl = new CountDownLatch(latchCount);