Skip to main content

gRPC streaming

http://www.grpc.io/docs/guides/index.html
https://github.com/grpc/grpc.git

gRPC is based around the idea of defining a service, specifying the methods that can be called remotely with their parameters and return types

On the server side, the server implements this interface and runs a gRPC server to handle client calls. On the client side, the client has a stub (referred to as just a client in some languages) that provides the same methods as the server.

<1> define the structure for the data you want to serialize in a proto file: this is an ordinary text file with a .proto extension

homework
http://www.grpc.io/docs/quickstart/python.html
http://www.grpc.io/docs/tutorials/basic/python.html#bidirectional-streaming-rpc-1

Comments

Popular posts from this blog