public class Person {
private String name;
private int age;
public Person() {}
}
Person person = new Person();
person.setName("John");
person.setAge(30);
byte[] data = ProtostuffIOUtil.toByteArray(person, personSchema, buffer);
Person deserializedPerson = new Person();
ProtostuffIOUtil.mergeFrom(data, deserializedPerson, personSchema);