I have many different schemes, but there is a set of fields that each scheme contains. I was wondering if there is a way for another scheme to extend the parent scheme and inherit its fields. For example, this is what I want:
message Parent { required string common1 = 0; optional string common2 = 1; } message Child1 {
So that Child1 and Child2 also contain the fields common1 and common2 (and potentially more) from Parent.
Is this possible, and if so, how?
inheritance serialization extends protocol-buffers
user1413793
source share