-
Enhancement
-
Resolution: Done
-
Major
-
14.0.7.Final
-
None
We want to provide a DSL to build a Protocol Buffers schema with all the options we can use using ProtoStream and the indexing annotations.
Here is a possible usage:
builder =new ProtoBuf.Builder() .indexed() .required("a", 1) .basic() .optional("b", 2) .keyword(...); var protobuf_as_string = builder.build()