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
- Host: GitHub
- URL: https://github.com/takusemba/grpc-android
- Owner: TakuSemba
- Created: 2017-11-17T11:34:45.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-03T08:55:10.000Z (about 8 years ago)
- Last Synced: 2025-04-01T14:14:36.439Z (12 months ago)
- Topics: android, client, grpc, protobuf
- Language: Java
- Size: 229 KB
- Stars: 8
- Watchers: 0
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.