-
Notifications
You must be signed in to change notification settings - Fork 620
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
List serialization doesn't work with protobuf #93
Comments
As far as I know, protobuf doesn't have a concept of "root-level list". There are no lists at all, just repeated objects with the same Tag. In your case, tag for |
Root-level lists usually refer to delimited messages which are tagless, length-prefixed messages. They're almost always used for streaming, though, and not with buffered data. |
That's exactly what I'm doing for now (wrapping the list in an object). |
Serializing a list of objects succeeds in JSON and fails with Protobuf
With the following error:
The text was updated successfully, but these errors were encountered: