If I have a protobuf that looks like this

message Table{
  required Schema mySchema= 1;
  repeated Row myRows = 2;
}

And the sender is sending me a Table structure with thousands of rows, I would 
like to be able to read the Schema structure into memory, then read each Row 
into memory one at a time, instead of all of them at once.  Is there a way to 
do this using the Java API?  If so can you share an example of how to do so?

Thanks!

Dan


-- 
You received this message because you are subscribed to the Google Groups 
"Protocol Buffers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to protobuf+unsubscr...@googlegroups.com.
To post to this group, send email to protobuf@googlegroups.com.
Visit this group at http://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.

Reply via email to