Protostuff is the stuff that leverages google's protobuf.

learn more… | top users | synonyms

1
vote
1answer
105 views

How can I read JSON data from C++ through Java using a piqi definition

We use a 3rd party REST web service which defines their json API using piqi schemas. Our current architecture needs this data to be read through a java client and transferred to a c++ binary. ...
0
votes
0answers
83 views

How to serialize arraylist using protostuff

I am trying to serialize a arraylist using protostuff. I'd see that you can serialize a list only using this method: ProtobufIOUtil.writeListTo(out, messages, schema, buffer) that needs a ...
1
vote
1answer
403 views

How do you serialize Guava's immutable collections using Protostuff?

I use protostuff-runtime to serialize object graphs. Some of these objects have reference to Guava immutable collections, such as ImmutableList and ImmutableSet. Protostuff is unable to deserialize ...
0
votes
1answer
128 views

Using protostuff, how to skip reading a deleted entity?

I am part of a team that use Protostuff to read/write data. This is the mergeFrom method of a class extends from a Schema class: @Override public void mergeFrom(Input input, Entity entity) throws ...
0
votes
1answer
839 views

Compatibility between Protobuf and Protostuff

are Classes generated by the Protostuff code generator compatible with those created by Protobuf? I tried to (de)serialize some simple messages and got several exceptions: Proto-File ...
2
votes
1answer
470 views

Why does protostuff corrupt objects when using generics combined with circular references?

I am using protostuff binary with circular references and generics. As a very simplistic scenario i have the following classes: public class A { private String name; private B b; ...