final int[] consolidates = new int[]{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16};
int repeats = 10000;
for (int i = 0; i < repeats; i++) {
excerpt.startExcerpt(8 + 4 + 4 * consolidates.length);
excerpt.writeLong(System.nanoTime());
excerpt.writeInt(consolidates.length);
for (final int consolidate : consolidates) {
excerpt.writeInt(consolidate);
}
excerpt.finish();
}