Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mnajborowski/grpc-example
My side project for learning the basics of gRPC written in Kotlin.
https://github.com/mnajborowski/grpc-example
grpc java kotlin
Last synced: 8 days ago
JSON representation
My side project for learning the basics of gRPC written in Kotlin.
- Host: GitHub
- URL: https://github.com/mnajborowski/grpc-example
- Owner: mnajborowski
- Created: 2022-05-01T21:56:57.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-05-24T00:10:24.000Z (over 2 years ago)
- Last Synced: 2024-11-13T02:44:10.787Z (2 months ago)
- Topics: grpc, java, kotlin
- Language: Kotlin
- Homepage:
- Size: 92.8 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gRPC-example
My side project for learning the basics of gRPC. As for the moment I implemented server-side application with two
services written in Kotlin:
- [HelloService](src/main/kotlin/service/HelloService.kt)
- [CalculatorService](src/main/kotlin/service/CalculatorService.kt)**CalculatorService** provides functions using all the gRPC modes:
- unary
- server streaming
- client streaming
- bidirectional streamingI test the application with Postman gRPC Client.