Closed GoogleCodeExporter closed 8 years ago
Works for me.
Kryo kryo = new Kryo();
Output output = new Output(1024);
kryo.writeClass(output, String.class);
System.out.println(kryo.readClass(new Input(output.toBytes())));
Original comment by nathan.s...@gmail.com
on 7 Jul 2012 at 10:11
so it's okay that serializing String.class doesn't actually send
"java.lang.String" over the wire?
Original comment by oreissig
on 18 Jul 2012 at 10:16
Primitive, primitive wrappers, and String are regsitered by default.
Original comment by nathan.s...@gmail.com
on 19 Jul 2012 at 8:18
Original issue reported on code.google.com by
oreissig
on 3 Jul 2012 at 2:51