public int totalMessages() {
return repeat;
}
public long timeThroughput(final int reps, final int numberOfClients) throws NoSuchMethodException, InvocationTargetException, IllegalAccessException, InstantiationException, InterruptedException {
group = new DefaultPGroup(new FJPool(maxClients));
repeatsPerClient = repeat / numberOfClients;//MESSAGE quota for each pair of actors
long totalTime = 0L;
for (int i = 0; i < reps; i++) {