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: 5 months 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 (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-05-24T00:10:24.000Z (about 3 years ago)
- Last Synced: 2025-01-12T08:45:11.065Z (6 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.