Skip to main content

Posts

Showing posts with the label protocol-buffers

Extending Protocol Buffers in Java

I'm having trouble accessing extended protocol buffer members. Here is the scenario: Message Foo { optional int i = 1; } message Bar { extend Foo { optional int j = 10001; } } I don't have the Bar message within any of my other protos. How can I get Bar.j in Java? All examples I've found require a Bar within a message. Thanks!