}
long time = System.nanoTime() - start;
System.out.printf("Processed %,d events in and out in %.1f seconds%n", orders, time / 1e9);
if (!throughputTest) {
System.out.printf("The latency distribution was %.1f, %.1f/%.1f/%.1f us for the 1, 90/99/99.9 %%tile%n",
times.percentile(0.01) / 1e3,
times.percentile(0.90) / 1e3,
times.percentile(0.99) / 1e3,
times.percentile(0.999) / 1e3
);
}