项目作者: rodrigosetti
项目描述 :
Minimal example of Scala, gRPC and Protobuf server
高级语言: Scala
项目地址: git://github.com/rodrigosetti/hello-scala-grpc-protobuf.git
Example of Scala Protobuf and gRPC
References
How to test
- Run this project (
sbt run
) - Use a gRPC client to make a request (you can use my fork of grpcc which
fixes a critical issue:
https://github.com/rodrigosetti/grpcc/tree/handle-dot-delimited)
$ grpcc -a localhost:4080 -p src/main/protobuf/hello.proto -i
? What package you want to use? com.example.proto
Connecting to Greeter on localhost:4080. Available globals:
client - the client connection to Greeter
sayHello (HelloRequest, callback) returns HelloReply
printReply - function to easily print a server reply (alias: pr)
Greeter@localhost:4080> client.sayHello({ name: 'Foo' }, pr)
EventEmitter {}
Greeter@localhost:4080>
{
"message": "Hello Foo!"
}