xref: /aosp_15_r20/external/flatbuffers/grpc/samples/greeter/greeter.fbs (revision 890232f25432b36107d06881e0a25aaa6b473652)
1*890232f2SAndroid Build Coastguard Workertable HelloReply {
2*890232f2SAndroid Build Coastguard Worker  message:string;
3*890232f2SAndroid Build Coastguard Worker}
4*890232f2SAndroid Build Coastguard Worker
5*890232f2SAndroid Build Coastguard Workertable HelloRequest {
6*890232f2SAndroid Build Coastguard Worker  name:string;
7*890232f2SAndroid Build Coastguard Worker}
8*890232f2SAndroid Build Coastguard Worker
9*890232f2SAndroid Build Coastguard Workertable ManyHellosRequest {
10*890232f2SAndroid Build Coastguard Worker  name:string;
11*890232f2SAndroid Build Coastguard Worker  num_greetings:int;
12*890232f2SAndroid Build Coastguard Worker}
13*890232f2SAndroid Build Coastguard Worker
14*890232f2SAndroid Build Coastguard Workerrpc_service Greeter {
15*890232f2SAndroid Build Coastguard Worker  SayHello(HelloRequest):HelloReply;
16*890232f2SAndroid Build Coastguard Worker  SayManyHellos(ManyHellosRequest):HelloReply (streaming: "server");
17*890232f2SAndroid Build Coastguard Worker}
18