Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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 streaming

I test the application with Postman gRPC Client.