mirror of
https://github.com/google/flatbuffers.git
synced 2025-04-08 01:02:04 +08:00
* Move `namer.h` and `idl_namer.h` to `include/codegen` so they can be reused from `grpc` dirqectory. * [gRPC] Update the Python generator to produce typed handlers and Python stubs if requested. * [gRPC] Document the newly added compiler flags.
12 lines
322 B
Plaintext
12 lines
322 B
Plaintext
namespace example;
|
|
|
|
table HelloRequest {}
|
|
table HelloResponse {}
|
|
|
|
rpc_service HelloService {
|
|
Hello(HelloRequest):HelloResponse;
|
|
StreamClient(HelloRequest):HelloResponse (streaming: "client");
|
|
StreamServer(HelloRequest):HelloResponse (streaming: "server");
|
|
Stream(HelloRequest):HelloResponse (streaming: "bidi");
|
|
}
|