An open API service indexing awesome lists of open source software.

https://github.com/takusemba/grpc-android

client side for grpc
https://github.com/takusemba/grpc-android

android client grpc protobuf

Last synced: 11 months ago
JSON representation

client side for grpc

Awesome Lists containing this project

README

          



---

# grpc-android

This is The Proto for this project. send a coffee and receive a coffee.

```proto
syntax = "proto3";

option java_package = "com.takusemba.grpc.android.protos";
option go_package = "protos";

package Coffee;

message CoffeeRequest {
string name = 1;
}

message CoffeeResponse {
int32 price = 1;
string name = 2;
string message = 3;
}

service Coffee {
rpc Order (CoffeeRequest) returns (CoffeeResponse) {}
}
```

### Proto

see [grpc-proto](https://github.com/TakuSemba/grpc-proto) for the Proto files

### Server Side

see [grpc-go](https://github.com/TakuSemba/grpc-go) for the server side.