@Override
protected void run() {
ByteArrayOutputStream bos = new ByteArrayOutputStream();
KryoOutstream ooo = new KryoOutstream(bos);
ooo.writeObject(bench);
ooo.writeObject(q);
ooo.close();
byte[] bs = bos.toByteArray();
KryoInstream iii = new KryoInstream(new ByteArrayInputStream(bs));
Benchmark cp = iii.readObject(Benchmark.class);
Bean t = iii.readObject(Bean.class);