项目作者: rodrigosetti

项目描述 :
Minimal example of Scala, gRPC and Protobuf server
高级语言: Scala
项目地址: git://github.com/rodrigosetti/hello-scala-grpc-protobuf.git
创建时间: 2017-03-15T22:33:48Z
项目社区:https://github.com/rodrigosetti/hello-scala-grpc-protobuf

开源协议:

下载


Example of Scala Protobuf and gRPC

References

How to test

  1. Run this project (sbt run)
  2. 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)
  1. $ grpcc -a localhost:4080 -p src/main/protobuf/hello.proto -i
  2. ? What package you want to use? com.example.proto
  3. Connecting to Greeter on localhost:4080. Available globals:
  4. client - the client connection to Greeter
  5. sayHello (HelloRequest, callback) returns HelloReply
  6. printReply - function to easily print a server reply (alias: pr)
  7. Greeter@localhost:4080> client.sayHello({ name: 'Foo' }, pr)
  8. EventEmitter {}
  9. Greeter@localhost:4080>
  10. {
  11. "message": "Hello Foo!"
  12. }