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.
16 lines
358 B
16 lines
358 B
5 years ago
|
syntax = "proto3";
|
||
|
package com.google.protobuf.jruby;
|
||
|
option optimize_for = CODE_SIZE;
|
||
|
|
||
|
message Sentinel {
|
||
|
int32 default_int32 = 1;
|
||
|
int64 default_int64 = 2;
|
||
|
uint32 default_unit32 = 3;
|
||
|
uint64 default_uint64 = 4;
|
||
|
string default_string = 5;
|
||
|
bool default_bool = 6;
|
||
|
float default_float = 7;
|
||
|
double default_double = 8;
|
||
|
bytes default_bytes = 9;
|
||
|
}
|