Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
660 B
22 lines
660 B
8 months ago
|
edition = "2023";
|
||
|
|
||
|
package basic_test;
|
||
|
|
||
|
import "test_import_proto2.proto";
|
||
|
|
||
|
option features.enum_type = CLOSED; // Ignored by ruby.
|
||
|
option features.field_presence = IMPLICIT;
|
||
|
|
||
|
message TestFeaturesMessage {
|
||
|
int32 implicit = 1;
|
||
|
int32 explicit = 2 [features.field_presence = EXPLICIT];
|
||
|
int32 legacy_required = 3 [features.field_presence = LEGACY_REQUIRED];
|
||
|
|
||
|
repeated int32 packed = 50;
|
||
|
repeated int32 expanded = 51 [features.repeated_field_encoding = EXPANDED];
|
||
|
repeated foo_bar.proto2.TestImportedMessage unpackable = 52;
|
||
|
|
||
|
TestFeaturesMessage delimited = 100 [features.message_encoding = DELIMITED];
|
||
|
TestFeaturesMessage length_prefixed = 101;
|
||
|
}
|