public void parallelDeserialization() throws InterruptedException {
DataOutput out = serialize.getDataOutput(128, true);
out.putLong(8);
out.writeClassAndObject(Long.valueOf(8));
TestClass c = new TestClass(5, 8, new short[]{1, 2, 3, 4, 5}, TestEnum.Two);
out.writeObject(c, TestClass.class);
final StaticBuffer b = out.getStaticBuffer();
int numThreads = 100;
Thread[] threads = new Thread[numThreads];
for (int i = 0; i < numThreads; i++) {